-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (43 loc) · 877 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (43 loc) · 877 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
42
43
44
const themeSwapper = require('tailwindcss-theme-swapper')
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
accent: "#1251B6",
accent2: "#657ED4",
}
},
},
plugins: [require("@tailwindcss/typography"), require('@tailwindcss/forms'),
themeSwapper({
themes: [
{
name: 'base',
selectors: [':root'],
theme: {
colors: {
"bg": "#D9E7D8",
"box": "#ECEDF5"
},
},
},
{
name: 'dark',
selectors: ['.dark'],
//mediaQuery: '@media (prefers-color-scheme: dark)',
theme: {
colors: {
"bg": "#090A0E",
"box": "#13171B"
},
},
},
],
}),
],
};