-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (45 loc) · 1.75 KB
/
tailwind.config.js
File metadata and controls
45 lines (45 loc) · 1.75 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
rubik: ["Rubik", "sans-serif"],
},
colors: {
purple: "#A729F5",
error: "#EE5454",
white: "#FFFFFF",
lightBlue: "#ABC1E1",
darkNavy: "#313E51",
lightBackground: "#F4F6FA",
greyNavy: "#626C7F",
lightBluish: "#ABC1E1",
navy: "#3B4D66",
lightGray: "#F4F6FA",
},
backgroundImage: {
"mobile-light":
"url('/img/pattern-background-mobile-light.svg')",
"tablet-light":
"url('/img/pattern-background-tablet-light.svg')",
"desktop-light":
"url('/img/pattern-background-desktop-light.svg')",
"mobile-dark": "url('/img/pattern-background-mobile-dark.svg')",
"tablet-dark": "url('/img/pattern-background-tablet-dark.svg')",
"desktop-dark":
"url('/img/pattern-background-desktop-dark.svg')",
"icon-sun-light": "url('/img/icon-sun-light.svg')",
"icon-sun-dark": "url('/img/icon-sun-dark.svg')",
"icon-moon-light": "url('/img/icon-moon-light.svg')",
"icon-moon-dark": "url('/img/icon-moon-dark.svg')",
},
boxShadow: {
"card-light": "0px 16px 40px 0px rgba(143, 160, 193, 0.14)",
"card-dark": "0px 16px 40px 0px rgba(49, 62, 81, 0.14)",
},
},
},
plugins: [],
};