-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtailwind.config.js
executable file
·61 lines (59 loc) · 1.57 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
const { join } = require('path');
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}",
// add blocks, icons and hooks here
"./blocks/**/*.{js,ts,jsx,tsx}",
"./icons/**/*.{js,ts,jsx,tsx}",
"./hooks/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
emerald: colors.emerald,
indigo: colors.indigo,
yellow: colors.yellow,
},
animation: {
'spin-slow': 'spin 5s linear infinite',
},
},
},
darkMode: 'class',
daisyui: {
themes: [
{
'supertype': {
'primary': '#ad0705',
'primary-focus': '#c4002f',
'primary-content': '#000000',
// 'secondary': '#909297',
'secondary': '#6a1622',
'secondary-focus': '#1A202C',
'secondary-content': '#FFFFFF',
'accent': '#ff8878',
'accent-focus': '#eb9e94',
'accent-content': '#000000',
'neutral': '#3D4451',
'neutral-focus': '#3D4451',
'neutral-content': '#FFFFFF',
// info
'info': '#b1976b',
'info-focus': '#887048',
},
},
"halloween"
]
},
plugins: [require("daisyui"), require('@tailwindcss/typography')],
}