From 628337f3afcd5125299cbf620832779ab209022b Mon Sep 17 00:00:00 2001 From: Kit La Touche Date: Mon, 30 Dec 2024 15:43:01 -0500 Subject: Add in some hand-rolled styles --- ui/styles/variables.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ui/styles/variables.css (limited to 'ui/styles/variables.css') 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; +} -- cgit v1.2.3