forked from adrianhajdin/project_3D_developer_portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
32 lines (32 loc) · 756 Bytes
/
tailwind.config.cjs
File metadata and controls
32 lines (32 loc) · 756 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx}"],
mode: "jit",
theme: {
extend: {
colors: {
primary: "#050816",
secondary: "#aaa6c3",
tertiary: "#151030",
cost1: "#009FFD",
cost2: "#2A2A72",
cost3: "#09C6F9",
cost4: "#045DE9",
cost5: "#0B1120",
"black-100": "#100d25",
"black-200": "#090325",
"white-100": "#f3f3f3",
},
boxShadow: {
card: "0px 35px 120px -15px #211e35",
},
screens: {
xs: "450px",
},
backgroundImage: {
"hero-pattern": "url('/src/assets/herobg2.png')",
},
},
},
plugins: [require("@tailwindcss/aspect-ratio")],
};