-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (32 loc) · 814 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
33 lines (32 loc) · 814 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
const themes = require('./themes');
/* eslint global-require: off, import/no-extraneous-dependencies: off */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/react-tailwindcss-select/dist/index.esm.js',
],
plugins: [require('@tailwindcss/typography'), require('daisyui')],
daisyui: {
themes: [
...themes,
{
default: {
primary: '#9ece6a',
secondary: '#f7768e',
accent: '#ff9e64',
neutral: '#414868',
'base-100': '#1a1b26',
info: '#b4f9f8',
success: '#2f9e44',
warning: '#e03131',
error: '#fa5252',
},
},
],
base: true,
darkTheme: 'coffee',
styled: true,
utils: true,
},
};