-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
42 lines (41 loc) · 1.03 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
const colors = require('tailwindcss/colors');
module.exports = {
content: ['./src/index.html', './src/index.jsx', './src/components/**/*.jsx'],
theme: {
colors: {
amber: colors.amber,
black: colors.black,
blue: colors.blue,
bluegray: colors.slate,
coolgray: colors.gray,
cyan: colors.cyan,
emerald: colors.emerald,
gray: colors.gray,
green: colors.green,
indigo: colors.indigo,
sky: colors.sky,
lime: colors.lime,
orange: colors.orange,
pink: colors.pink,
purple: colors.purple,
red: colors.red,
rose: colors.rose,
teal: colors.teal,
truegray: colors.neutral,
violet: colors.violet,
warmgray: colors.stone,
white: colors.white,
yellow: colors.yellow,
transparent: colors.transparent,
},
extend: {},
},
variants: {
extend: {},
},
plugins: [require('daisyui'), require('@tailwindcss/typography')],
daisyui: {
themes: ['light', 'dark', 'night'],
darkTheme: 'night',
},
};