-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
62 lines (62 loc) · 1.64 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
black: "#010101",
"dark-gray": "#222222",
"light-gray": "#b3b3b3",
white: "#F1F1F1",
"off-white": "#E1E1E1",
pink: "#D668AA",
blue: "#A385FF",
},
fontFamily: {
"dela-gothic-one": [
"var(--font-dela-gothic-one)",
"system-ui",
"apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Helvetica Neue",
"Arial",
"sans-serif",
],
caramel: [
"var(--font-caramel)",
"system-ui",
"apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Helvetica Neue",
"Arial",
"sans-serif",
],
manrope: [
"var(--font-manrope)",
"system-ui",
"apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Helvetica Neue",
"Arial",
"sans-serif",
],
},
backgroundImage: {
"pink-gradient": "linear-gradient(90deg, #D668AA, #FFC2E7)",
"blue-gradient": "linear-gradient(90deg, #A385FF, #C2AEFF)",
"noisy-card":
"url(/images/noise/noise.svg), linear-gradient(-125deg, #8864F4 14%, #D668AA 100%), linear-gradient(#A385FF, #D0C1FC)",
primary:
"linear-gradient(-125deg, #8864F4 14%, #D668AA 100%), linear-gradient(#A385FF, #D0C1FC)",
},
},
},
plugins: [],
};