-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (38 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["clash", "Helvetica", "Arial", "sans-serif"],
mons: ["Montserrat", "sans-serif"],
unica: ["Unica One", "cursive"],
},
colors: {
primaryColor: "#d434fe",
bgMain: "#150E28",
borderColor: "rgba(255, 255, 255, 0.18)",
bgLight: "rgba(255, 255, 255, 0.03)",
opaque: "rgba(217, 217, 217, 0.03)",
textBg: "linear-gradient(90deg, #903AFF 3.08%, #FF26B9 93.85%)",
greyText: "rgba(255, 255, 255, 0.25)",
buttonBg:
"linear-gradient(270deg, rgb(144, 58, 255) 0%, rgb(212, 52, 254) 56.42%, rgb(255, 38, 185) 99.99%, rgb(254, 52, 185) 100%)",
overlayColor: "rgba(21, 14, 40, 0.93)",
schemeBgcolor: "#150E28",
schemePurple: "#903AFF",
schemeViolet: "#D434FE",
schemePink: "#EC2AD3",
schemedark: "#100B1F",
},
backgroundImage: {
btnGradient: "linear-gradient(270deg, #903AFF 0%, #FE34B9 100%)",
},
boxShadow: {
contactFormShadow: "0px 4px 4px 0px rgba(0, 0, 0, 0.25)",
},
},
},
variants: {},
plugins: [],
};