-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.js
More file actions
23 lines (23 loc) · 758 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
23 lines (23 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: 'rgb(var(--primary-color) / <alpha-value>)',
secondary: 'rgb(var(--secondary-color) / <alpha-value>)',
background: 'rgb(var(--background-color) / <alpha-value>)',
'private-channel': 'rgb(var(--private-channel-color) / <alpha-value>)',
'public-channel': 'rgb(var(--public-channel-color) / <alpha-value>)'
},
fontSize: {
'xs-relative': '0.75em',
'sm-relative': '0.875em',
'base-relative': '1em'
},
dropShadow: {
panel: '0 10px 10px rgba(0, 0, 0, 0.9)'
}
}
},
plugins: [require('@tailwindcss/typography'), require('tailwind-scrollbar')]
}