-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
64 lines (61 loc) · 1.3 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
52
53
54
55
56
57
58
59
60
61
62
63
64
/** @type {import('tailwindcss').Config}*/
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['AT Name Sans Variable', 'Supreme', 'apple-system', '--system-ui'],
mono: ['Recursive'],
title: ['Whirly Birdie', 'New Title']
}
}
},
daisyui: {
logs: false,
themes: [
{
light: {
primary: '#226E48',
'primary-focus': '#042B24',
'primary-content': '#F6FFFB',
secondary: '#a78bfa',
accent: '#D1BC03',
neutral: '#677471',
'base-100': '#F6FFFB',
'base-200': '#FAFFFD',
'base-300': '#E5FDF2',
'base-content': '#042B24',
info: '#3abff8',
success: '#4ade80',
warning: '#fbbd23',
error: '#f87272'
}
},
{
dark: {
primary: '#a7f3d0',
'primary-focus': '#73E0B4',
'primary-content': '#021714',
secondary: '#a78bfa',
accent: '#fef9c3',
neutral: '#677471',
'base-100': '#021713',
'base-200': '#001410',
'base-300': '#010D0B',
'base-content': '#fff',
info: '#3abff8',
success: '#4ade80',
warning: '#fbbd23',
error: '#f87272'
}
},
'cupcake'
]
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/container-queries'),
require('daisyui')
]
};
module.exports = config;