CHORE: Starting to get to work with changing some of the old formatting over to tailwind config

This commit is contained in:
2025-05-21 22:45:18 +01:00
parent fc642a4ecd
commit 24a7ebf02a
28 changed files with 118 additions and 734 deletions

19
tailwind.config.js Normal file
View File

@ -0,0 +1,19 @@
module.exports = {
theme: {
extend: {
colors: {
'one-bg': '#282c34',
'one-bg-light': '#3a3f4b',
'one-fg': '#abb2bf',
'one-accent': '#61afef',
'one-green': '#98c379',
'one-orange': '#d19a66',
'one-red': '#e06c75',
'one-yellow': '#e5c07b',
'one-purple': '#c678dd',
'one-cyan': '#56b6c2',
'one-comment': '#5c6370',
}
}
}
}