-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (29 loc) · 972 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
30 lines (29 loc) · 972 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
fontSize: {
base: '16px', // This sets the base font size to 16px
},
extend: {
boxShadow: {
'b-button-label': '0 0.25rem 0 rgba(0, 0, 0, 0.25), 0 -0.25rem 0 #A75CF4 inset',
'b-button': '0 0.25rem 0 rgba(0, 0, 0, 0.25), 0 -0.25rem 0 #4EC306 inset',
'b-button-orange': '0 0.25rem 0 rgba(0, 0, 0, 0.25), 0 -0.25rem 0 #FFB213 inset',
'b-button-hover': '0 0.25rem 0 rgba(0, 0, 0, 0.25)',
},
width: {
'lg-button': '16rem',
'sm-button': '7.375rem', // Add more custom widths as needed
},
borderRadius: {
'button': "2.063rem",
'container': "1.313rem"
}
},
},
variants: {},
plugins: [],
}