-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
44 lines (38 loc) · 943 Bytes
/
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
/** @type {import('tailwindcss').Config}*/
// const colors = require('tailwindcss/colors')
import colors from 'tailwindcss/colors'
const config = {
content: [
"./src/**/*.{html,js,svelte,ts}",
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
],
plugins: [
require('flowbite/plugin')
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: colors.yellow,
// primary: {
// 50: colors.yellow[50],
// 100: colors.yellow[50],
// 200: colors.yellow[50],
// 300: colors.yellow[50],
// 400: colors.yellow[100],
// 500: colors.yellow[200],
// 600: colors.yellow[300],
// 700: colors.yellow[400],
// 800: colors.yellow[500],
// 900: colors.yellow[600],
// },
},
},
},
safelist: [
'w-20',
'h-20',
],
};
// module.exports = config;
export default config