diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 16:31:27 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 16:31:27 -0700 |
commit | 5148ee2063846d37f9152a9dfa64fcd40cc0454b (patch) | |
tree | ba19032f6296c97e9dd8ce91253886bf24d5b441 /src/css/theme.css | |
parent | 17e95224a083ccd9e522f8712bb10846a2dada8a (diff) | |
download | the-abstraction-engine-5148ee2063846d37f9152a9dfa64fcd40cc0454b.tar.gz the-abstraction-engine-5148ee2063846d37f9152a9dfa64fcd40cc0454b.zip |
get something on the screen
Diffstat (limited to 'src/css/theme.css')
-rw-r--r-- | src/css/theme.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/css/theme.css b/src/css/theme.css new file mode 100644 index 0000000..c65b2a8 --- /dev/null +++ b/src/css/theme.css @@ -0,0 +1,17 @@ +@import url("./colors.css"); + +.primary { + color: var(--aqua); +} +.secondary { + color: var(--blue); +} +.tertiary { + color: var(--purple); +} +.warning { + color: var(--yellow); +} +.error { + color: var(--red); +} |