-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
67 lines (66 loc) · 1.96 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import type { Config } from 'tailwindcss'
import typography from '@tailwindcss/typography'
import daisyui from 'daisyui'
export default {
content: ['./src/**/*.{html,md,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [typography, daisyui],
daisyui: {
themes: [
{
// Nord Remix Light
light: {
primary: '#88C0D0', // nord8
'primary-content': '#ECEFF4', // nord6
secondary: '#5E81AC', // nord10
'secondary-content': '#ECEFF4', // nord6
accent: '#81A1C1', // nord9
'accent-content': '#ECEFF4', // nord6
neutral: '#3B4252', // nord1
'neutral-content': '#D8DEE9', // nord4
'base-100': '#FFFFFF', // white
'base-200': '#ECEFF4', // nord6
'base-300': '#E5E9F0', // nord5
'base-content': '#2E3440', // nord0
info: '#B48EAD', // nord15
success: '#A3BE8C', // nord14
warning: '#EBCB8B', // nord13
error: '#BF616A' // nord11
}
},
{
// Nord Remix Dark
dark: {
primary: '#88C0D0', // nord8
'primary-content': '#ECEFF4', // nord6
secondary: '#5E81AC', // nord10
'secondary-content': '#ECEFF4', // nord6
accent: '#81A1C1', // nord9
'accent-content': '#ECEFF4', // nord6
neutral: '#3B4252', // nord1
'neutral-content': '#D8DEE9', // nord4
'base-100': '#2E3440', // nord0
'base-200': '#292E39', // nordtheme.com
'base-300': '#242933', // nordtheme.com
'base-content': '#D8DEE9', // nord4
info: '#B48EAD', // nord15
success: '#A3BE8C', // nord14
warning: '#EBCB8B', // nord13
error: '#BF616A' // nord11
}
},
// 'light',
// 'dark',
'cupcake',
'emerald',
'valentine',
'synthwave',
'halloween',
'aqua',
'dracula',
'winter'
]
}
} satisfies Config