Add styling
This commit is contained in:
parent
c0a14ed508
commit
9f513d8a1b
3 changed files with 77 additions and 2 deletions
23
src/theme.styl
Normal file
23
src/theme.styl
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/* Import all the fonts and whatnot */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Germania+One&display=swap');
|
||||
$fonts = 'Germania One', sans-serif
|
||||
|
||||
$title-letter-spacing = 2px
|
||||
$body-letter-spacing = 1px
|
||||
|
||||
$main-background-colour = #23272A
|
||||
$main-text-colour = #99AAB5
|
||||
|
||||
/* Styling for inputs (not all input types use all values) */
|
||||
$input-background = #2C2F33
|
||||
$input-background-hover = $input-background
|
||||
$input-background-active = $input-background
|
||||
$input-text = $main-text-colour
|
||||
$input-text-hover = $input-text
|
||||
$input-text-active = $input-text
|
||||
$input-letter-spacing = 1px
|
||||
$input-border-width = 2px
|
||||
$input-border-radius = 7px
|
||||
$input-border-colour = transparent
|
||||
$input-border-colour-hover = transparent
|
||||
$input-border-colour-active = transparent
|
||||
Loading…
Add table
Add a link
Reference in a new issue