forked from shopinvader/shopinvader-template-nuxtjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
86 lines (86 loc) · 1.99 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import type { Config } from 'tailwindcss'
const colors = require("tailwindcss/colors")
import daisyui from 'daisyui'
export default {
content: [],
plugins: [daisyui],
theme: {
extend: {
fontFamily: {
heading: "Montserrat",
},
colors: {
slate: colors.slate,
base: colors.neutral,
primary: {
DEFAULT: "#13263d",
'50': '#f3f7fc',
'100': '#e5eef9',
'200': '#c6dcf1',
'300': '#93bfe6',
'400': '#599dd7',
'500': '#3482c3',
'600': '#2466a5',
'700': '#1e5286',
'800': '#1d466f',
'900': '#1d3d5d',
'950': '#13263d',
},
secondary: {
DEFAULT: "#dca11d",
'50': '#fcf9ea',
'100': '#f9f2c8',
'200': '#f4e294',
'300': '#edcb57',
'400': '#e6b429',
'500': '#dca11d',
'600': '#b87916',
'700': '#935715',
'800': '#7a4619',
'900': '#693a1a',
'950': '#3d1e0b',
},
accent: {
DEFAULT: "#74253f",
'50': '#fcf3f7',
'100': '#f9eaf2',
'200': '#f5d5e5',
'300': '#efb2cf',
'400': '#e482ae',
'500': '#d75d90',
'600': '#c43e70',
'700': '#a92d58',
'800': '#8c2849',
'900': '#74253f',
'950': '#471022',
},
},
},
},
daisyui: {
themes: [
{
mytheme: {
fontFamily: 'Montserrat,"sanssecondaryerif"',
primary: '#13263d',
secondary: '#dca11d',
accent: '#def2ff',
neutral: '#42536d',
'base-100': '#ffffff',
info: '#0284c7',
success: '#3EE581',
warning: '#fde047',
error: '#db2777',
"--rounded-box": ".5rem"
}
}
],
styled: true,
base: true,
utils: true,
logs: false,
rtl: false,
prefix: '',
darkTheme: 'emerald'
}
} satisfies Config