-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
65 lines (64 loc) · 2.01 KB
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontSize: {
"10xl": "10rem",
},
spacing: {
128: "32rem",
144: "36rem",
160: "40rem",
176: "44rem",
224: "56rem",
256: "64rem",
400: "100rem",
},
colors: {
"wh-0": "#FFFFFF",
"wh-10": "#F4F4F4",
"wh-50": "#FBFBFB",
"wh-75": "#F7F7F7",
"wh-100": "#C9C9C9",
"wh-300": "#939393",
"wh-500": "#595959",
"wh-900": "#0F0F0F",
"accent-red": "#EA9648",
"accent-orange": "#E87500",
"officer-orange": "#EE9740",
"accent-green": "#2D8B49",
"accent-yellow": "#EDCA2C",
"or-10": "#ff841c",
"secondary-blue": "#498E94",
"secondary-red": "#E20000",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [
plugin(function ({ addComponents }: { addComponents: Function }) {
addComponents({
".navbarLink": {
color: "#498E94",
opacity: 100,
"&:hover": {
color: "#E20000",
underline: true,
opacity: 1,
},
},
});
}),
require("@tailwindcss/typography"),
],
};