-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.mjs
71 lines (71 loc) · 1.55 KB
/
tailwind.config.mjs
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
fontFamily: {
sans: ['Manrope', 'system-ui', 'sans-serif'],
},
colors: {
white: '#fff',
grey: {
dark: '#555',
DEFAULT: '#999',
light: '#ebecf0',
lighter: '#efefef',
},
black: '#000',
primary: '#000',
red: '#e51414',
error: '#e51414',
yellow: '#e18c02',
warning: '#e18c02',
blue: '#0048ff',
info: '#0048ff',
green: '#0fdd13',
success: '#0fdd13',
},
fontSize: {
sm: ['14px', '20px'],
base: ['18px', '24px'],
lg: ['20px', '28px'],
xl: ['26px', '32px'],
'2xl': ['32px', '40px'],
'3xl': ['48px', '56px'],
},
borderRadius: {
none: '0',
DEFAULT: '16px',
full: '9999px',
},
boxShadow: {
DEFAULT: '-15px 15px 60px 15px rgba(0, 0, 0, 25%)',
},
extend: {
spacing: {
128: '32rem',
160: '40rem',
256: '64rem',
},
},
},
daisyui: {
themes: [
{
light: {
...require('daisyui/src/theming/themes').light,
neutral: '#000',
'.btn-neutral:hover': {
'background-color': '#555',
'border-color': '#555',
},
primary: '#fff',
'.btn-primary:hover': {
'background-color': '#aaa',
'border-color': '#aaa',
},
},
},
],
},
plugins: [require('daisyui')],
};