-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
44 lines (43 loc) · 1.3 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
darkMode: "media",
theme: {
backgroundImage: {
join: "url('/backgrounds/join.svg')",
"join-mobile": "url('/backgrounds/join-mobile.svg')",
"top-bar": "url('/backgrounds/top-border.svg')",
discord: "url('/backgrounds/discord.svg')",
},
extend: {
colors: {
"primary-light": "#860091",
"primary-dark": "#9a00a8",
"secondary-light": "#FFEEE5",
"secondary-dark": "#1a1817",
"button-primary-light": "#860091",
"button-primary-dark": "#9a00a8",
"button-secondary-light": "#e9d0c3",
"button-secondary-dark": "#e9d0c3",
"highlight-light": "rgba(194, 65, 25, 0.2)",
"highlight-dark": "rgba(194, 65, 25, 0.2)",
"card-light": "white",
"card-dark": "#2b2927",
"divider-light": "black",
"divider-dark": "#5d5d5d",
"background-light": "#FFEEE5",
"background-dark": "#181411",
"text-light": "black",
"text-dark": "white",
"text-body-light": "#191919",
"text-body-dark": "#c1c1c1",
},
},
},
plugins: [],
};