-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
36 lines (36 loc) · 1.15 KB
/
tailwind.config.js
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
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable @typescript-eslint/dot-notation */
/* eslint-disable import/no-extraneous-dependencies */
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
plugins: [require('daisyui')],
daisyui: {
themes: [
{
light: {
...require('daisyui/src/theming/themes')['light'],
'base-100': 'rgb(253, 252, 254)',
'base-200': 'rgb(245, 242, 248)',
primary: 'rgb(15, 13, 19)',
secondary: 'rgb(162, 56, 255)',
neutral: 'rgb(225, 221, 228)',
fontFamily: 'Inter, Arial, sanf-serif',
'primary-content': 'rgb(253, 252, 254)',
},
},
{
dark: {
...require('daisyui/src/theming/themes')['dark'],
'base-100': 'rgb(15, 13, 19)',
'base-200': 'rgb(27, 25, 31)',
primary: 'rgb(253, 252, 254)',
secondary: 'rgb(162, 56, 255)',
neutral: 'rgb(58, 57, 61)',
fontFamily: 'Inter, Arial, sanf-serif',
'primary-content': 'rgb(15, 13, 19)',
},
},
],
},
};