-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
40 lines (40 loc) · 944 Bytes
/
tailwind.config.mjs
File metadata and controls
40 lines (40 loc) · 944 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
33
34
35
36
37
38
39
40
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
primary: {
50: '#fef5f1',
100: '#fde8df',
200: '#fbcdb9',
300: '#f8a98a',
400: '#f47a5a',
500: '#f05536',
600: '#e13b1e',
700: '#bc2e18',
800: '#9b2819',
900: '#80261a',
950: '#45100a',
},
neutral: {
50: '#fafafa',
100: '#f4f4f5',
200: '#e4e4e7',
300: '#d4d4d8',
400: '#a1a1aa',
500: '#71717a',
600: '#52525b',
700: '#3f3f46',
800: '#27272a',
900: '#18181b',
950: '#09090b',
},
},
fontFamily: {
sans: ['Inter var', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
}