-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 889 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
32 lines (32 loc) · 889 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
primary: '#ffa49b',
'primary-variant': '#ffdbd7',
'primary-hover': '#f28174',
secondary: '#9bb4ff',
'secondary-hover': '#6f93ff',
error: '#FF0000',
background: '#252836',
'item-background': '#1F1D2B',
'login-btn': '#4044ED',
'register-btn': '#656ED3',
},
fontFamily: {
// 'jk-abode': ['Regular Demo', 'sans-serif'],
// 'baloo-bhaijaan': ['Regular', 'sans-serif'],
roboto: ['Roboto', 'sans-serif'],
oswald: ['Oswald', 'sans-serif'],
'baloo-bhaijaan': ['Baloo Bhaijaan 2', 'cursive'],
},
fontSize: {
'main-item': '15px',
'secondary-size': '12px',
},
},
},
plugins: [],
};