2020-12-04 23:31:54 +00:00
|
|
|
/*
|
2023-09-20 20:01:43 +00:00
|
|
|
** TailwindCSS Configuration File
|
|
|
|
|
**
|
|
|
|
|
** Docs: https://tailwindcss.com/docs/configuration
|
2023-09-20 21:46:02 +00:00
|
|
|
** Default: https://github.com/tailwindlabs/tailwindcss/blob/master/stubs/config.full.js
|
2023-09-20 20:01:43 +00:00
|
|
|
*/
|
2020-12-04 23:31:54 +00:00
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
|
|
2019-03-30 22:55:48 +00:00
|
|
|
module.exports = {
|
2023-09-20 21:43:14 +00:00
|
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
2019-03-30 22:55:48 +00:00
|
|
|
theme: {
|
2023-09-20 21:43:14 +00:00
|
|
|
fontSize: {
|
|
|
|
|
'xxs': ['0.625rem'],
|
|
|
|
|
'xs': ['0.75rem'],
|
|
|
|
|
'sm': ['0.875rem'],
|
|
|
|
|
'base': ['1rem'],
|
|
|
|
|
'lg': ['1.125rem'],
|
|
|
|
|
'xl': ['1.25rem'],
|
|
|
|
|
'2xl': ['1.5rem'],
|
|
|
|
|
'3xl': ['1.875rem'],
|
|
|
|
|
'4xl': ['2.25rem'],
|
|
|
|
|
'5xl': ['3rem'],
|
|
|
|
|
'6xl': ['3.75rem'],
|
|
|
|
|
'7xl': ['4.5rem'],
|
|
|
|
|
'8xl': ['6rem'],
|
|
|
|
|
'9xl': ['8rem'],
|
|
|
|
|
},
|
2023-09-20 20:01:43 +00:00
|
|
|
customForms: (theme) => ({
|
2020-08-27 19:35:05 +00:00
|
|
|
default: {
|
|
|
|
|
checkbox: {
|
2023-09-20 20:01:43 +00:00
|
|
|
'width': theme('spacing.6'),
|
|
|
|
|
'height': theme('spacing.6'),
|
|
|
|
|
'backgroundColor': 'rgba(23, 49, 79, 0.6)',
|
|
|
|
|
'borderColor': theme('colors.blue.800'),
|
|
|
|
|
'textColor': theme('colors.blue.1000'),
|
2020-08-27 19:35:05 +00:00
|
|
|
'&:focus': {
|
|
|
|
|
backgroundColor: theme('colors.blue.1000'),
|
|
|
|
|
borderColor: theme('colors.blue.700'),
|
|
|
|
|
boxShadow: undefined,
|
|
|
|
|
},
|
|
|
|
|
'&:checked': {
|
|
|
|
|
backgroundColor: theme('colors.blue.1000'),
|
|
|
|
|
borderColor: 'transparent',
|
2023-09-20 20:01:43 +00:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2020-08-27 19:35:05 +00:00
|
|
|
}),
|
2020-12-04 23:31:54 +00:00
|
|
|
extend: {
|
|
|
|
|
colors: {
|
|
|
|
|
teal: {
|
2023-09-20 21:43:14 +00:00
|
|
|
100: '#E6FFFA',
|
|
|
|
|
200: '#B2F5EA',
|
|
|
|
|
300: '#81E6D9',
|
|
|
|
|
400: '#4FD1C5',
|
|
|
|
|
500: '#38B2AC',
|
|
|
|
|
600: '#319795',
|
|
|
|
|
700: '#2C7A7B',
|
|
|
|
|
800: '#285E61',
|
|
|
|
|
900: '#234E52',
|
2023-09-20 20:01:43 +00:00
|
|
|
flashy: '#24e8cc',
|
2020-12-04 23:31:54 +00:00
|
|
|
},
|
|
|
|
|
blue: {
|
2023-09-20 21:43:14 +00:00
|
|
|
100: '#EBF8FF',
|
|
|
|
|
200: '#BEE3F8',
|
|
|
|
|
300: '#90CDF4',
|
|
|
|
|
400: '#63B3ED',
|
|
|
|
|
500: '#4299E1',
|
|
|
|
|
600: '#3182CE',
|
|
|
|
|
700: '#2B6CB0',
|
|
|
|
|
800: '#2C5282',
|
|
|
|
|
900: '#2A4365',
|
2020-12-04 23:31:54 +00:00
|
|
|
760: '#2C5C94',
|
|
|
|
|
850: '#2B4B74',
|
2023-09-20 20:01:43 +00:00
|
|
|
1000: '#17314f',
|
2020-12-04 23:31:54 +00:00
|
|
|
},
|
2019-04-04 20:29:37 +00:00
|
|
|
},
|
2020-12-04 23:31:54 +00:00
|
|
|
fontFamily: {
|
|
|
|
|
sans: ['Inter', ...defaultTheme.fontFamily.sans],
|
2019-04-04 20:29:37 +00:00
|
|
|
},
|
|
|
|
|
},
|
2019-03-30 22:55:48 +00:00
|
|
|
},
|
2023-09-20 20:01:43 +00:00
|
|
|
plugins: [require('@tailwindcss/custom-forms')],
|
2020-02-14 21:54:58 +00:00
|
|
|
}
|