blakeblackshear.frigate/web/tailwind.config.js

29 lines
851 B
JavaScript
Raw Normal View History

2021-01-09 18:26:46 +01:00
'use strict';
module.exports = {
purge: ['./public/**/*.html', './src/**/*.jsx'],
2021-01-31 15:24:04 +01:00
darkMode: 'class',
2021-01-09 18:26:46 +01:00
theme: {
extend: {
screens: {
'2xl': '1536px',
'3xl': '1720px',
},
},
boxShadow: {
sm: '0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24)',
DEFAULT: '0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);',
md: '0px 2px 2px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);',
lg: '0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23)',
xl: '0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22)',
'2xl': '0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22)',
'3xl': '',
none: '',
2021-02-04 00:35:28 +01:00
},
2021-01-09 18:26:46 +01:00
},
variants: {
extend: {},
},
plugins: [],
};