-
Notifications
You must be signed in to change notification settings - Fork 39
/
tailwind.config.js
43 lines (43 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
incognito: ["var(--incognito)"],
inter: ["var(--inter)"],
},
colors: {
"primary-color": "#33E092",
"secondary-color": "#0CCE6B",
"tertiary-color": "#16a34a",
"primary-bg": "rgba(39, 39, 43, 0.4)",
"secondary-bg": "rgba(250, 250, 250, 0.4)",
},
boxShadow: {
"line-light": "rgba(17, 17, 26, 0.1) 0px 1px 0px",
"line-dark": "rgb(29, 29, 32) 0px 1px 0px",
},
gridTemplateColumns: {
custom: "1.2fr 1fr",
},
gridTemplateRows: {
fit: "min-content 0fr",
full: "min-content 1fr",
},
backgroundImage: {
noise:
"url('https://res.cloudinary.com/victoreke/image/upload/v1691779257/victoreke/noise.png')",
},
backgroundPosition: {
zero: "0 0",
},
},
},
plugins: [],
};