1
Fork 0
photoview/ui/tailwind.config.js

34 lines
662 B
JavaScript
Raw Normal View History

2021-05-21 12:15:00 +02:00
module.exports = {
mode: 'jit',
purge: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
2021-05-21 14:15:31 +02:00
extend: {
2021-05-24 00:02:19 +02:00
screens: {
2021-05-23 23:48:13 +02:00
xs: '480px',
},
2021-05-21 14:15:31 +02:00
boxShadow: {
separator: '0 0 4px 0 rgba(0, 0, 0, 0.1)',
},
2021-06-17 17:49:51 +02:00
colors: {
green: {
50: '#f0ffee',
100: '#dcffd8',
200: '#b6fdb3',
300: '#7cf587',
400: '#56e263',
500: '#4abf3c',
600: '#30a23e',
700: '#168332',
800: '#006624',
900: '#00541d',
},
},
2021-05-21 14:15:31 +02:00
},
2021-05-21 12:15:00 +02:00
},
variants: {
extend: {},
},
plugins: [],
}