diff options
author | Teddy Wing | 2018-11-09 21:18:02 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-09 21:18:02 +0100 |
commit | 737b09e6a192fb7a40578a696b372d6db7222119 (patch) | |
tree | 573f45b8b9d6f99495dd616d1f760c5595a316db | |
parent | e456962fba055fba210c56aa6f0c29be4c0767a0 (diff) | |
download | dome-key-web-737b09e6a192fb7a40578a696b372d6db7222119.tar.bz2 |
links.hcss: Replace colours with variables
-rw-r--r-- | assets/stylesheets/color.hcss | 2 | ||||
-rw-r--r-- | assets/stylesheets/links.hcss | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/assets/stylesheets/color.hcss b/assets/stylesheets/color.hcss index f050a18..08c1ead 100644 --- a/assets/stylesheets/color.hcss +++ b/assets/stylesheets/color.hcss @@ -1,3 +1,5 @@ +set(BURGUNDY, #b71863) +set(BURGUNDY_DARK, #880442) set(MURKY_POND, #91947f) .color-murky-pond { diff --git a/assets/stylesheets/links.hcss b/assets/stylesheets/links.hcss index ba7d4c9..6c635f4 100644 --- a/assets/stylesheets/links.hcss +++ b/assets/stylesheets/links.hcss @@ -1,2 +1,2 @@ -a:link { color: #b71863; } -a:hover { color: #880442; } +a:link { color: BURGUNDY; } +a:hover { color: BURGUNDY_DARK; } |