-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 1.33 KB
/
Copy pathtailwind.config.js
File metadata and controls
51 lines (51 loc) · 1.33 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
48
49
50
51
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
fontFamily: {
sans: ['"DM Sans"', 'system-ui', 'sans-serif'],
mono: ['"JetBrains Mono"', 'monospace'],
display: ['"Syne"', 'sans-serif'],
},
colors: {
surface: {
DEFAULT: '#0a0a0f',
1: '#0f0f1a',
2: '#14141f',
3: '#1a1a28',
},
accent: {
blue: '#3b82f6',
violet: '#7c3aed',
cyan: '#06b6d4',
},
text: {
primary: '#f0f0ff',
secondary: '#9898b0',
muted: '#52526a',
},
},
animation: {
'fade-up': 'fadeUp 0.6s ease forwards',
'fade-in': 'fadeIn 0.5s ease forwards',
'slide-right': 'slideRight 0.6s ease forwards',
},
keyframes: {
fadeUp: {
from: { opacity: '0', transform: 'translateY(24px)' },
to: { opacity: '1', transform: 'translateY(0)' },
},
fadeIn: {
from: { opacity: '0' },
to: { opacity: '1' },
},
slideRight: {
from: { opacity: '0', transform: 'translateX(-20px)' },
to: { opacity: '1', transform: 'translateX(0)' },
},
},
},
},
plugins: [],
};