-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (39 loc) · 1.05 KB
/
Copy pathtailwind.config.js
File metadata and controls
40 lines (39 loc) · 1.05 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
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
charcoal: "#091d2d",
"dark-bg": "#0a0a0a",
"dark-surface": "#161616",
"dark-surface-high": "#1f1f1f",
"pale-gray": "#f7f9ff",
accent: "#0040e0",
"accent-bright": "#2e5bff",
"surface-low": "#edf4ff",
"surface-white": "#ffffff",
signal: "#00c1fd",
amber: "#ffba35",
},
fontFamily: {
heading: ["var(--font-space-grotesk)", ...fontFamily.sans],
body: ["var(--font-inter)", ...fontFamily.sans],
},
boxShadow: {
soft: "0 24px 60px rgba(9, 29, 45, 0.06)",
float: "0 40px 80px rgba(9, 29, 45, 0.08)",
},
backgroundImage: {
"accent-gradient":
"linear-gradient(135deg, #0040e0 0%, #2e5bff 100%)",
},
},
},
plugins: [],
};