-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (35 loc) · 1010 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors:{
'primary-100': '#fbfc0b',
'primary-200': '#c8c908',
'primary-300': '#969706',
'secondary-100': '#0c0bfc',
'secondary-200': '#3c3bfc',
'secondary-300': '#5454fc',
'tertiary-100': '#0bfbfc',
'tertiary-300': '#08c8c9',
'tertiary-200': '#07afb0',
'quaternary-100': '#fc0bfb',
'quaternary-300': '#c908c8',
'quaternary-200': '#b007af',
'semitransparent-dark':'rgba(0,0,0,0.65)',
},
boxShadow: {
'cs': 'rgba(255, 255, 255, 0.2) 0px 0px 15px, rgba(255, 255, 255, 0.15) 0px 0px 3px 1px',
}
},
screens:{
...defaultTheme.screens,
'ws': '900px'
},
},
plugins: [],
}