-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 984 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 984 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: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
background: '#FFFFFF',
foreground: '#090A0F',
card: '#FFFFFF',
'card-foreground': '#090A0F',
popover: '#FFFFFF',
'popover-foreground': '#090A0F',
primary: '#1DBF73',
'primary-foreground': '#FFF5F5',
secondary: '#F4F4F8',
'secondary-foreground': '#1A1A33',
muted: '#F4F4F8',
'muted-foreground': '#383850',
accent: '#F4F4F8',
'accent-foreground': '#1A1A33',
destructive: '#F52B2B',
'destructive-foreground': '#FAFAFA',
border: '#E0E0EB',
input: '#E0E0EB',
warning: '#FF6707',
},
fontFamily: {
sans: ['Roboto', 'sans-serif'],
},
fontSize: {
xs: '0.75rem',
s: '0.875rem',
m: '1rem',
l: '1.25rem',
xl: '1.5rem',
'2xl': '2rem',
},
extend: {},
},
plugins: [],
}