-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
28 lines (27 loc) · 802 Bytes
/
tailwind.config.ts
File metadata and controls
28 lines (27 loc) · 802 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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
background: 'var(--background)',
secodaryBackground: 'var(--secondary-background)',
foreground: 'var(--foreground)',
primary: 'var(--primary)',
},
boxShadow: {
'custom-light':
'0.5px 0.5px 2px rgba(0, 0, 0, 0.1), -0.5px -0.5px 2px rgba(0, 0, 0, 0.1)',
'button-light':
'0px 0px 2px rgba(0, 0, 0, 0.1), -0.1px -0.1px 3px rgba(0, 0, 0, 0.1)',
'custom-dark': '0 10px 15px rgba(0, 0, 0, 0.3)',
},
},
},
plugins: [],
};
export default config;