-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
40 lines (39 loc) · 1.34 KB
/
Copy pathtailwind.config.ts
File metadata and controls
40 lines (39 loc) · 1.34 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
import type { Config } from 'tailwindcss'
export default {
content: ['./index.html', './src/**/*.{vue,ts}'],
theme: {
extend: {
colors: {
ocean: 'rgb(var(--color-ocean) / <alpha-value>)',
mint: 'rgb(var(--color-ocean) / <alpha-value>)',
ink: 'rgb(var(--color-ink) / <alpha-value>)',
muted: 'rgb(var(--color-muted) / <alpha-value>)',
line: 'rgb(var(--color-line) / <alpha-value>)',
canvas: 'rgb(var(--color-canvas) / <alpha-value>)',
soft: 'rgb(var(--color-soft) / <alpha-value>)',
panel: 'rgb(var(--color-panel) / <alpha-value>)',
danger: 'rgb(var(--color-danger) / <alpha-value>)',
success: 'rgb(var(--color-success) / <alpha-value>)',
warning: 'rgb(var(--color-warning) / <alpha-value>)',
dark: 'rgb(var(--color-dark) / <alpha-value>)',
device: 'rgb(var(--color-device) / <alpha-value>)',
head: 'rgb(var(--color-head) / <alpha-value>)',
},
fontFamily: {
sans: [
'-apple-system',
'BlinkMacSystemFont',
'SF Pro Display',
'SF Pro Text',
'Segoe UI',
'sans-serif',
],
},
boxShadow: {
soft: '0 16px 40px rgba(17, 24, 39, 0.08)',
phone: '0 24px 80px rgba(17, 24, 39, 0.20)',
},
},
},
plugins: [],
} satisfies Config