-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
66 lines (64 loc) · 1.67 KB
/
tailwind.config.cjs
File metadata and controls
66 lines (64 loc) · 1.67 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}",
],
theme: {
// fontSize:{
// xxs: '0.625rem',
// },
extend: {
boxShadow: {
"3xl": "0px 11px 44px rgba(0, 0, 0, 0.1);",
},
colors: {
blue: "#159DEA",
azure: "#8EECF5",
grayHeavy: "#6D6D6D",
grayReg: "#999999",
grayLight: "#E9E9E9",
grayFrame: "#CCCCCC",
grayDisable: "#F2F2F2",
yellow: "#D2CC7F",
orange: "#D7A77F",
green: "#07BC0C",
pink: "#DB7C82",
lilac: "#BD7DB2",
purple: "#9379BB",
navyBlue: "#6789B9",
darkTeal: "#5A9DB4",
darkBlue: "#3A5C8D",
teal: "#58ACB5",
hunterGreen: "#5FB8A5",
lightGreen: "#72CC7C",
lightTeal: "#5FB8A5",
lightGreen: "#72CC7C",
flourishRed: "#ED5252",
revoltingGreen: "#088515",
someRed: "#CA535A",
},
gridTemplateRows: {
// Simple 12 row grid
12: "repeat(12, minmax(0, 1fr))",
},
width: {
128: "32rem",
144: "36rem",
192: "42rem",
256: "64rem",
},
backgroundImage: {
brain: "url('../assets/images/brain-prism-wide.jpg')",
},
},
},
plugins: [require("flowbite/plugin")],
safelist: [
{
pattern:
/(bg|text|border)-( blue |azure|grayHeavy|grayReg|grayLight|grayFrame|grayDisable|yellow|orange|pink|lilac|purple|navyBlue|darkTeal|teal|hunterGreen|lightGreen|lightTeal|lightGreen|flourishRed|revoltingGreen|someRed)/,
},
],
};