-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (47 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
47 lines (47 loc) · 1.2 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
41
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
brand: {
obsidian: '#0A0B0D',
bone: '#F4F1EB',
graphite: '#1F2226',
parchment: '#E6DFD1',
gold: '#B8935B',
ink: '#0E1A3A',
},
},
fontFamily: {
sans: ['Söhne', 'system-ui', 'sans-serif'],
serif: ['GT Sectra', 'Canela', 'Georgia', 'serif'],
mono: ['Söhne Mono', 'Courier New', 'monospace'],
},
fontWeight: {
600: '600',
700: '700',
800: '800',
},
borderRadius: {
xl: '12px',
'2xl': '16px',
'3xl': '20px',
},
boxShadow: {
card: '0 4px 24px rgba(31, 86, 212, 0.08)',
'card-hover': '0 8px 32px rgba(31, 86, 212, 0.14)',
invoice: '0 4px 40px rgba(31, 86, 212, 0.10)',
},
animation: {
'fade-up': 'fadeSlideUp 0.3s ease-out',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
},
},
plugins: [],
};