-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
52 lines (51 loc) · 1.14 KB
/
tailwind.config.ts
File metadata and controls
52 lines (51 loc) · 1.14 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import type { Config } from 'tailwindcss'
const config: Config = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
brandblue: {
DEFAULT: '#0c274a',
dark: '#061a35',
light: '#163a66',
}
}
},
},
safelist: [
'text-brandblue',
'bg-brandblue',
'bg-brandblue/5',
'bg-brandblue/10',
'border-brandblue',
'border-brandblue-dark',
'border-brandblue/20',
'fill-yellow-500',
'text-yellow-500',
// Dark mode classes
'dark:bg-gray-800',
'dark:bg-gray-900',
'dark:bg-gray-700',
'dark:bg-gray-700/50',
'dark:text-white',
'dark:text-gray-100',
'dark:text-gray-300',
'dark:text-gray-400',
'dark:text-gray-500',
'dark:border-gray-700',
'dark:border-gray-600',
'dark:hover:bg-gray-700',
'dark:hover:border-gray-600',
'dark:bg-brandblue/10',
'dark:bg-brandblue/20',
'dark:text-brandblue-light',
'dark:border-brandblue/30',
],
plugins: [],
}
export default config