-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.38 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
45
46
47
48
49
50
51
52
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
spacing: {
sidebar: '320px',
notification: '420px',
header: '100px',
cart: '340px',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
fontFamily: {
poppins: ['Poppins', 'san-serif'],
},
colors: {
primary: '#ff6e40',
milk: '#f5f4fe',
success: '#05b171',
warning: '#faae42',
error: '#ea4444',
info: '#25c2e3',
normal: '#333',
special: '#9932e7',
'dark-primary': '#eb5c30',
'light-primary': 'rgba(255, 110, 64, .15)',
'normal-primary': 'rgba(255, 110, 64, .45)',
'dark-success': '#049660',
'dark-warning': '#d58b23',
'dark-error': '#c73a3a',
border: '#ced4da',
'light-border': '#dee2e6',
dark: '#293134',
light: '#ededed',
white: '#fff',
brown: '#cc5833',
'light-gray': '#6c757d',
'light-blue': '#0dcaf0',
'purple': '#6610f2',
},
},
},
plugins: [],
}