-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
44 lines (43 loc) · 1.16 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
content: [
"./src/client/pages/**/*.{js,ts,jsx,tsx}",
"./src/client/components/**/*.{js,ts,jsx,tsx}",
"./dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
colors: {
"custom-grey": "#909AD7",
"custom-dark-grey": "#45496A",
"custom-light-grey": "#F2F2F2",
"custom-medium-grey": "#ECEBE4",
white: "#FFFFFF",
black: "#OOOOOO",
transparent: "transparent",
black2: "#151515",
turquoise: "#7BDFD9",
"fl-pink": "#C65197",
orange: "#E39C42",
blue: "#4D7FAB",
"fl-green": "#75A743",
"fl-yellow": "#DE9E41",
"fl-blue": "#4f8fba",
"fl-light-blue": "#84BCD0",
"fl-grey": "#859696",
"fl-black": "#151d28",
},
},
plugins: [
plugin(function ({ addBase, theme }) {
addBase({
h1: { fontSize: theme("fontSize.7xl") },
h2: { fontSize: theme("fontSize.4xl") },
h3: { fontSize: theme("fontSize.2xl") },
h4: { fontSize: theme("fontSize.xl") },
h5: { fontSize: theme("fontSize.lg") },
});
}),
],
};