-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (40 loc) · 1004 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (40 loc) · 1004 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
38
39
40
41
import daisyui from 'daisyui';
import { cupcake, synthwave } from 'daisyui/src/theming/themes';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}', './node_modules/tw-elements/js/**/*.js'],
theme: {
extend: {},
},
plugins: [daisyui],
daisyui: {
themes: [
{
light: {
cupcake,
primary: '#65c3c8',
secondary: '#ef9fbc',
accent: '#eeaf3a',
neutral: '#291334',
'base-100': '#faf7f5',
'base-200': '#efeae6',
'base-content': '#291334',
},
},
{
dark: {
synthwave,
primary: '#65c3c8',
secondary: '#ef9fbc',
accent: '#eeaf3a',
neutral: '#291334',
'neutral-content': '#f9f7fd',
'base-100': '#1a103d',
'base-200': '#27374D',
'base-300': '#526D82',
'base-content': '#f9f7fd',
},
},
],
},
};