-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
38 lines (38 loc) · 1.23 KB
/
Copy pathtailwind.config.mjs
File metadata and controls
38 lines (38 loc) · 1.23 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
extend: {
colors: {
background: 'rgb(var(--background) / <alpha-value>)',
foreground: 'rgb(var(--foreground) / <alpha-value>)',
border: 'rgb(var(--border) / <alpha-value>)',
muted: 'rgb(var(--muted) / <alpha-value>)',
'muted-foreground': 'rgb(var(--muted-foreground) / <alpha-value>)',
accent: 'rgb(var(--accent) / <alpha-value>)',
'accent-foreground': 'rgb(var(--accent-foreground) / <alpha-value>)',
},
fontFamily: {
sans: ['Space Grotesk', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
borderRadius: {
// Neo-Brutalism: sharp corners everywhere by default.
DEFAULT: '0px',
none: '0px',
sm: '0px',
md: '0px',
lg: '0px',
xl: '0px',
'2xl': '0px',
full: '9999px', // keep pills for dots/badges only
},
boxShadow: {
brutal: '4px 4px 0 0 rgb(var(--shadow))',
'brutal-sm': '2px 2px 0 0 rgb(var(--shadow))',
'brutal-lg': '6px 6px 0 0 rgb(var(--shadow))',
},
},
},
plugins: [],
};