-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (37 loc) · 1.04 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
'cfg-white': '#f5f5f4', // stone-100
'cfg-black': '#0f172a', // slate-900
primary: {
// DEFAULT: '#34d399', // emerald-400
// dark: '#10b981', // emerald-500
// light: '#6ee7b7', // emerald-300
// DEFAULT: '#10b981', // emerald-500
// dark: '#059669', // emerald-600
// light: '#34d399', // emerald-400
DEFAULT: '#059669', // emerald-600
dark: '#047857', // emerald-700
light: '#10b981', // emerald-500
},
secondary: {
DEFAULT: '#f59e0b', // amber-500
light: '#fcd34d', // amber-300
},
warning: {
DEFAULT: '#EF4444', // red-500
light: '#F87171', // red-400
},
},
},
},
plugins: [],
}