-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (37 loc) · 1.4 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundImage: {
"cloud-image":
"url('/src/assets/center_bg_landing_header.svg')",
"left-image": "url('/src/assets/left_bg_landing_header.svg')",
"right-image": "url('/src/assets/right_bg_landing_header.svg')",
"tiny-image": "url('/src/assets/tiny_stars_landing.svg')",
"login-image": "url(/src/assets/login_bg.svg)",
},
colors: {
"blue-primary": "#5865f2",
"blue-secondary": "#404eed",
"blue-tertiary": "#5865f2",
"black-primary": "#202225",
"black-secondary": "#23272a",
"black-tertiary": "#2f3136",
"gray-primary": "#292b2f",
"gray-secondary": "#36393f",
"gray-tertiary": "#4f545c",
"light-red": "#ed4245",
"light-green": "#3ba55d",
"light-orange": "#f26522",
"light-gray": "#f6f6f6",
},
fontFamily: {
Inter: ["Inter", "sans-serif"],
Noto: ["Noto Sans", "sans-serif"],
ManRope: ["Manrope", "sans-serif"],
},
},
},
plugins: [],
};