-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.cjs
51 lines (34 loc) · 1.51 KB
/
tailwind.config.cjs
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
const defaultTheme = require('tailwindcss/defaultTheme');
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['Lexend', ...defaultTheme.fontFamily.sans]
},
colors: {
primary: '#018bc0ff' /* primary color */,
'primary-focus': '#00b2e3ff' /* primary color - focused */,
'primary-content': '#080602ff' /* Foreground content color to use on primary color */,
secondary: '#9464B4ff' /* secondary color */,
'secondary-focus': '#6A4186ff' /* secondary color - focused */,
'secondary-content': '#f6f6f6ff' /* Foreground content color to use on secondary color */,
accent: '#ffdf8aff' /* Accent color */,
'accent-focus': '#452c02ff' /* Accent color - focused */,
'accent-content': '#080602ff' /* Foreground content color to use on accent color */,
neutral: '#ffc029ff' /* Neutral color */,
'neutral-focus': '#d68000ff' /* Neutral color - focused */,
'neutral-content': '#080602ff' /* Foreground content color to use on neutral color */,
'base-100': '#0f1419ff' /* Base color of page, used for blank backgrounds */,
'base-200': '#191f26' /* Base color, a little darker */,
'base-300': '#272627ff' /* Base color, even more darker dcdfe6 */,
'base-content': '#c5c5c5ff' /* Foreground content color to use on base color */,
info: '#2094f3' /* Info */,
success: '#61a744ff' /* Success */,
warning: '#ff9900' /* Warning */,
error: '#e63023ff' /* Error */
}
},
},
};
module.exports = config;