-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
78 lines (73 loc) · 1.79 KB
/
Copy pathtailwind.config.js
File metadata and controls
78 lines (73 loc) · 1.79 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
const colors = require("tailwindcss/colors");
/** @type {import('@types/tailwindcss/tailwind-config').TailwindConfig} */
module.exports = {
purge: ["./src/**/*.{jsx,tsx}"],
darkMode: "media",
plugins: [],
theme: {
zIndex: {
minus: -1,
0: 0,
1: 1,
infinity: 2147483647,
},
extend: {
colors: {
gray: colors.blueGray,
cyan: colors.cyan,
"henken-from": {
pale: colors.teal[50],
light: colors.teal[200],
normal: colors.teal[400],
dark: colors.teal[700],
},
"henken-to": {
pale: colors.pink[50],
light: colors.pink[200],
normal: colors.pink[400],
dark: colors.pink[800],
},
"answer-right": {
normal: colors.green[400],
},
"answer-wrong": {
normal: colors.purple[400],
},
book: {
pale: colors.emerald[50],
light: colors.emerald[200],
normal: colors.emerald[500],
dark: colors.emerald[800],
},
"book-series": {
pale: colors.sky[50],
light: colors.sky[200],
normal: colors.sky[500],
dark: colors.sky[800],
},
author: {
pale: colors.amber[50],
light: colors.amber[200],
normal: colors.amber[500],
dark: colors.amber[800],
},
"temp-content": {
pale: colors.yellow[50],
light: colors.yellow[200],
normal: colors.yellow[400],
dark: colors.yellow[800],
},
},
screens: {
xs: "360px",
},
},
},
variants: {
extend: {
textColor: ["disabled"],
backgroundColor: ["disabled"],
display: ["group-focus", "focus-within"],
},
},
};