-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (48 loc) · 1.05 KB
/
tailwind.config.js
File metadata and controls
50 lines (48 loc) · 1.05 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
const colors = require("tailwindcss/colors");
module.exports = {
purge: ["./src/**/*.{js,jsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
grey: {
light: "#FAFBFD",
},
amber: {
light: "#F8D57E",
},
bgColor: {
light: "#FAFBFD",
},
black: colors.black,
green: colors.green,
white: colors.white,
gray: colors.trueGray,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber,
},
extend: {},
},
variants: {
extend: {},
width: ["responsive", "hover", "focus"],
height: ["responsive", "hover", "focus"],
},
plugins: [
require("daisyui"),
require("tailwind-scrollbar"),
function ({ addUtilities }) {
const extendLineThrough = {
".line-through": {
textDecoration: "line-through",
"text-decoration-color": "black",
"text-decoration-thickness": "3px",
},
};
addUtilities(extendLineThrough);
},
],
daisyui: {
styled: true,
},
};