Temporary col functionality, and absolute unfiltered styling agony

This commit is contained in:
2024-07-04 20:47:50 +02:00
parent ab93dd5960
commit c56974a79f
7 changed files with 158 additions and 177 deletions

View File

@ -3,8 +3,44 @@ export default {
content: [],
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
extend: {
colors: {
red: {
DEFAULT: '#d50000',
50: '#d50000',
100: '#b30000'
},
bordeaux: {
DEFAULT: '#800020',
50: '#cc0033',
100: '#800020',
200: '#4c0000'
},
blue: {
DEFAULT: '#00c2ff'
},
green: {
DEFAULT: '#09ad19'
},
cyan: {
DEFAULT: '#368f8b',
50: '#00b3b3',
100: '#368f8b',
200: '#376362'
},
gray: {
DEFAULT: '#7f7f7f',
50: '#d3d3d3',
100: '#7f7f7f',
200: '#696969',
300: '#313638',
500: '#778899'
}
}
},
},
plugins: [],
corePlugins: {
preflight: false
}
}