-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathtailwind.config.ts
52 lines (51 loc) · 1.09 KB
/
tailwind.config.ts
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 = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
plugins: [],
safelist: [
'bg-primary',
'bg-primary-dark',
'bg-primary-darker',
'bg-accent-grayblue',
'bg-accent-purple',
'bg-gray',
'dark:bg-white',
'dark:bg-primary-light',
'dark:bg-primary-lighter',
'dark:bg-accent-grayblue-light',
'dark:bg-accent-purple-light',
],
theme: {
extend: {
colors: {
accent: {
grayblue: {
DEFAULT: '#6A7DC2',
dark: '#4E62A5',
},
purple: {
DEFAULT: '#7C23FA',
dark: '#6A1BFF',
},
},
gray: {
DEFAULT: '#9CA3AF',
dark: '#374151',
light: '#E5E7EB',
},
primary: {
DEFAULT: '#2457FA',
dark: '#1D47CF',
darker: '#142F8B',
light: '#BECDFF',
lighter: '#DFE7FF',
},
},
},
},
};
export default config;