forked from JumboCode/TheLegacyProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
100 lines (94 loc) · 2.32 KB
/
tailwind.config.cjs
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
boxShadow: {
"drop-inner":
"inset 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.2)",
},
rotate: {
60: "60deg",
},
},
screens: {
xs: "320px",
sm: "680px",
md: "900px",
md2: "950px",
lg: "1180px",
xl: "1480px",
},
borders: {
test: "border-4 border-red-400 border-dashed",
},
colors: {
teal: "#36696E",
"dark-teal": "#22555A",
"light-teal": "#5E898D",
"dark-rust": "#8A423A",
"light-rust": "#C58078",
"light-moss": "#CDD3C8",
"off-white": "#F5F5F5",
"light-gray": "#D2D2D2",
"med-gray": "#8A8581",
tan: "#F5F0EA",
"dark-tan": "#D4CCC1",
"darker-tan": "#CAC2B7",
"darkest-tan": "#665E53",
"med-tan": "#E7E0D6",
"dark-green": "#22555A",
"offer-white": "#F0F0F0",
"light-sage": "#AEBDB6",
"dark-sage": "#94A59C",
"dark-gray": "#515151",
"dark-plum": "#000022",
"tag-rust": "#A8584F",
"tag-tan": "#AB7D55",
"tag-gold": "#BA9D4F",
"tag-lime": "#A3A865",
"tag-moss": "#768E64",
"tag-teal": "#698C8A",
"tag-blue": "#586D87",
"tag-violet": "#6F617F",
"tag-rose": "#A0687F",
"amber-red": "#A96257",
"sunset-orange": "#EF6767",
},
// TODO(nickbar01234) - Deprecate font
fontFamily: {
sans: ["Inter", "sans-serif"],
serif: ["Playfair Display", "serif"],
},
letterSpacing: {
easy: ".015em",
},
screen: {
xs: "320px",
sm: "640px",
md: "760px",
lg: "1024px",
xl: "1280px",
"2x": "1536px",
},
// fontSize: {
// xxs: "0.62rem",
// xs: "0.75rem",
// ms: "0.875rem",
// base: "1rem",
// lg: "1.125rem",
// xl: "1.25 rem",
// "2xl": "1.5rem",
// "3xl": "1.85rem",
// "4xl": "2.25rem",
// "5xl": "3rem",
// "6xl": "3.75 rem",
// "7xl": "4.5rem",
// "8xl": "6rem",
// "9xl": "8rem",
// },
},
plugins: [],
});