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

47 lines
978 B
JavaScript
Raw Permalink Normal View History

2021-05-21 12:15:00 +02:00
module.exports = {
mode: 'jit',
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
2021-05-21 12:15:00 +02:00
purge: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
2022-02-07 23:00:09 +01:00
darkMode: 'class',
2021-05-21 12:15:00 +02:00
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',
},
2022-02-07 23:00:09 +01:00
dark: {
bg: '#24292e',
bg2: '#30363e',
2022-02-09 22:19:08 +01:00
text: '#eee',
2022-02-08 21:14:10 +01:00
border: '#3b3b3b',
2022-02-09 22:19:08 +01:00
border2: '#202020',
2022-02-07 23:00:09 +01:00
input: {
bg: '#383e46',
border: '#4a515a',
text: '#ccdbe4',
},
},
2021-06-17 17:49:51 +02:00
},
2021-05-21 14:15:31 +02:00
},
2021-05-21 12:15:00 +02:00
},
variants: {
extend: {},
},
plugins: [],
}