-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
76 lines (75 loc) · 2.36 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
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
68
69
70
71
72
73
74
75
76
import typography from '@tailwindcss/typography'
import daisyui from 'daisyui'
export default /** @type {import('tailwindcss/tailwind-config').TailwindConfig} */ {
content: ['./src/**/*.{html,md,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [typography, daisyui],
daisyui: {
themes: [
{
default: {
primary: '#f28c18',
'primary-content': '#131616',
secondary: '#7C909A',
'secondary-content': '#ECEFF4',
accent: '#51a800',
'accent-content': '#ECEFF4',
neutral: '#1b1d1d',
'neutral-content': '#D8DEE9',
'base-100': '#212121',
'base-200': '#1c1c1c',
'base-300': '#1a1a1a',
'base-content': '#e7edef',
info: '#2563eb',
success: '#16a34a',
warning: '#d97706',
error: '#dc2626'
}
},
{
// 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
}
}
]
}
}