-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.24 KB
/
tailwind.config.js
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
41
42
43
44
/** @type {import('tailwindcss').Config} */
import { fontFamily } from 'tailwindcss/defaultTheme';
export default {
darkMode: ['class'],
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Ubuntu', ...fontFamily.sans],
},
colors: {
background: 'hsl(var(--background))',
foreground: 'hsl(var(--foreground))',
primary: {
DEFAULT: 'hsl(var(--primary))',
foreground: 'hsl(var(--primary-foreground))',
},
secondary: {
DEFAULT: 'hsl(var(--secondary))',
foreground: 'hsl(var(--secondary-foreground))',
},
destructive: {
DEFAULT: 'hsl(var(--destructive) / <alpha-value>)',
},
muted: {
DEFAULT: 'hsl(var(--muted))',
foreground: 'hsl(var(--muted-foreground))',
},
},
gridTemplateColumns: {
container: '1.2fr 2.8fr',
},
gridTemplateRows: {
container: '1fr max-content',
'mobile-container': 'repeat(3, auto)',
},
backgroundImage: {
'stepbar-desktop': 'url("/bg-sidebar-desktop.svg")',
'stepbar-mobile': 'url("/bg-sidebar-mobile.svg")',
},
},
},
plugins: [],
};