-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
38 lines (36 loc) · 828 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
38 lines (36 loc) · 828 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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'brutal': {
yellow: '#FDE047',
pink: '#F472B6',
cyan: '#67E8F9',
lime: '#A3E635',
orange: '#FB923C',
violet: '#A78BFA',
black: '#000000',
white: '#FFFFFF',
gray: '#F1F5F9',
}
},
boxShadow: {
'brutal': '4px 4px 0px 0px #000000',
'brutal-lg': '8px 8px 0px 0px #000000',
'brutal-xl': '12px 12px 0px 0px #000000',
},
fontFamily: {
'brutal': ['var(--font-space-grotesk)', 'Inter', 'sans-serif'],
},
borderWidth: {
'3': '3px',
}
},
},
plugins: [],
}
export default config