diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-12-30 15:43:01 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-12-30 15:43:01 -0500 |
| commit | 628337f3afcd5125299cbf620832779ab209022b (patch) | |
| tree | e23a47f6ba8e75640e6dcf1bb5acaef0b491313d /ui/styles/variables.css | |
| parent | 1859be064a5f3ea7e6e0188526b1b125dc1c77a7 (diff) | |
Add in some hand-rolled styles
Diffstat (limited to 'ui/styles/variables.css')
| -rw-r--r-- | ui/styles/variables.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ui/styles/variables.css b/ui/styles/variables.css new file mode 100644 index 0000000..e948c71 --- /dev/null +++ b/ui/styles/variables.css @@ -0,0 +1,18 @@ +:root { + /* + * Not great that these are in px, but not sure what else to do. + */ + --app-bar-height: 48px; + --input-row-height: 2rem; + --interface-padding: 16px; + --nav-width: 21rem; + + /* coloUrs */ + --colour-background: rgba(0, 0, 0, 0.25); + --colour-background-alt: rgba(0, 0, 0, 0.35); + --colour-border: rgba(0, 0, 0, 0.45); + --colour-text: rgb(240, 240, 240); + --colour-okay: #2a9d8f; + --colour-warn: #e9c46a; + --colour-error: #e76f51; +} |
