PHP Classes

File: frontend/tailwind.config.ts

Recommend this page to a friend!
  Classes of Edward Paul   Task List   frontend/tailwind.config.ts   Download  
File: frontend/tailwind.config.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Task List
Manage and share a list of tasks
Author: By
Last change:
Date: 23 days ago
Size: 433 bytes
 

Contents

Class file image Download
import type { Config } from "tailwindcss"; export default { darkMode: 'class', content: [ "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", "./src/components/**/*.{js,ts,jsx,tsx,mdx}", "./src/app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { colors: { gray: { 900: '#1a202c', // Ensure you define dark mode colors as needed }, }, }, }, plugins: [], } satisfies Config;