forked from malakhov-dmitrii/noizer-one_v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
37 lines (37 loc) · 772 Bytes
/
Copy pathtailwind.config.cjs
File metadata and controls
37 lines (37 loc) · 772 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{html,js,svelte,ts}'
// './node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'
],
theme: {
extend: {
// colors: {
// primary: {
// 50: '#f0f9ff',
// 100: '#e0f2fe',
// 200: '#bae5fd',
// 300: '#7dd1fc',
// 400: '#38bbf8',
// 500: '#0ea2e9',
// 600: '#0288d1',
// 700: '#0367a1',
// 800: '#075785',
// 900: '#0c496e'
// }
// }
}
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/aspect-ratio'),
// require('flowbite/plugin'),
require('daisyui')
],
darkMode: 'class',
daisyui: {
// themes: false
}
};