Begin on dark mode colors

This commit is contained in:
viktorstrate
2022-02-07 23:00:09 +01:00
parent 88da2644a8
commit 98f4dcb1e0
9 changed files with 32 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
module.exports = {
mode: 'jit',
purge: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
darkMode: 'class',
theme: {
extend: {
screens: {
@@ -23,6 +23,16 @@ module.exports = {
800: '#006624',
900: '#00541d',
},
dark: {
bg: '#24292e',
bg2: '#30363e',
text: '#fafafa',
input: {
bg: '#383e46',
border: '#4a515a',
text: '#ccdbe4',
},
},
},
},
},