Initial commit
This commit is contained in:
commit
fa30c04815
117 changed files with 33513 additions and 0 deletions
31
tailwind.config.js
vendored
Normal file
31
tailwind.config.js
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
module.exports = {
|
||||
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
|
||||
darkMode: false, // or 'media' or 'class'
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: {
|
||||
50: '#F2FFFF',
|
||||
100: '#D6FDFF',
|
||||
200: '#B6F7FB',
|
||||
300: '#7AE5EA',
|
||||
400: '#55C6CC',
|
||||
500: '#39A9B1',
|
||||
600: '#24929C',
|
||||
700: '#157983',
|
||||
800: '#135D66',
|
||||
900: '#0F4F57',
|
||||
light: '#54C6CC',
|
||||
DEFAULT: '#54C6CC',
|
||||
dark: '#1E8290',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
variants: {
|
||||
extend: {
|
||||
tableLayout: ['hover', 'focus'],
|
||||
},
|
||||
},
|
||||
plugins: [require('@tailwindcss/forms')],
|
||||
};
|
||||
Reference in a new issue