diff options
Diffstat (limited to 'src/css/custom.css')
-rw-r--r-- | src/css/custom.css | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/css/custom.css b/src/css/custom.css index f7a3179..04040e8 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -7,26 +7,31 @@ @import url('https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@900&family=Ubuntu&display=swap'); @tailwind base; -@layer base { - code { - } -} - @tailwind components; @tailwind utilities; body { - /* background-color: theme('colors.background'); */ + background-color: theme('colors.lightbackground'); +} + +[data-theme='dark'] body { + background-color: theme('colors.darkbackground'); } h1, h2, h3, h4, h5, h6 { font-family: 'Lexend Mega', sans-serif; } +.underline { + text-decoration-skip-ink: none !important; + text-underline-offset: 2rem; +} + p, li { font-family: 'Ubuntu', sans-serif; } + /* .navbar { flex: auto; border: 0; |