-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (50 loc) · 1.64 KB
/
Copy pathtailwind.config.js
File metadata and controls
51 lines (50 loc) · 1.64 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
backgroundImage: {
friend:
"linear-gradient(to right, rgba(26,26,26,0.5), rgba(26,26,26,0.5)), url('assets/Friend_of_the_week.png')",
question:
"linear-gradient(to right, rgba(26,26,26,0.5), rgba(26,26,26,0.5)), url('assets/Question_of_the_week.png')",
"galaxy-pattern": "url('assets/galaxy.png')",
astronaut: "url('assets/sadAstronaut.png')",
previous: "url('assets/previous_background.png')",
stars: "url('assets/beautiful-shining-stars-night-sky.png')",
vacation: "url('assets/beautiful-shining-stars-night-sky.png')",
},
fontFamily: {
sans: ["IBM Plex Sans"],
},
colors: {
"cod-gray": "#161616",
"med-purple": "#8556e0",
alto: "#dcdcdc",
silver: "#bcb9b9",
gray: "#8C8C8C",
"mine-shaft": "#303030",
"dove-gray": "#636363",
"input-purple": "#B27BD0",
"dark-cyan": "#035A63",
"register-cyan": "#40ACB8",
"cornflower-blue": "#007B88",
blackcurrant: "#403347",
"bkg-purple": "#403347",
"button-gray": "#727171",
"back-gray": "#6C6868",
"navbar-gray": "#4D4D4D",
"navbar-components-gray": "#8C8C8C",
"highlighted-button-blue": "#39E7F9",
"blue-login": "#06B4C6",
"light-gray": "#CCCCCC",
cerulean: "#06B4C6",
"off-white": "#F7F7F7",
"dark-gray": "#333333",
"blue-400": "#048795",
"lilac": "#36293D",
},
},
},
plugins: [],
};