-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
64 lines (48 loc) · 1.33 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
const defaultTheme = require('tailwindcss/defaultTheme')
const defaultColors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans]
}
}
},
plugins: [require('daisyui')],
daisyui: {
themes: [{
custom: {
'color-scheme': 'light',
primary: defaultColors.sky[300],
'primary-content': 'black',
secondary: defaultColors.lime[300],
'secondary-content': 'black',
// accent: '#ebdc99',
// 'accent-content': '#282425',
// neutral: '#7d7259',
// 'neutral-content': '#e4d8b4',
'base-0': defaultColors.white,
'base-100': defaultColors.gray[100],
'base-200': defaultColors.gray[200],
'base-300': defaultColors.gray[300],
'base-content': defaultColors.gray[700],
info: defaultColors.sky[900],
'info-content': '#ffffff',
// success: '#21CC51',
// 'success-content': '#ffffff',
// warning: '#FF6154',
// 'warning-content': '#ffffff',
// error: '#DE1C8D',
// 'error-content': '#ffffff',
'--rounded-box': '1rem',
'--rounded-btn': '99rem',
'--rounded-badge': '1rem',
// '--animation-btn': '0',
// '--animation-input': '0',
'--tab-radius': '99rem'
}
}]
}
}