From ca4adbee4033d352ab5d2a10975f8f3a262e3e1b 2017-06-16 23:07:35 From: DarkMorford Date: 2017-06-16 23:07:35 Subject: [PATCH] Rename palette entries to be color-agnostic. --- diff --git a/styles/_palette.scss b/styles/_palette.scss index c8c9ce4..1cc8fb1 100644 --- a/styles/_palette.scss +++ b/styles/_palette.scss @@ -1,8 +1,10 @@ -$background-gray: #4C565E; -$foreground-gray: #757B81; -$text-gray: #B7BFC7; -$light-orange: #F6B33D; -$dark-orange: #FF6600; -$infobox-gray: #23272B; -$link-hover: #EB5252; -$link-visited: #ECECA3; +$background: #4C565E; +$foreground: #757B81; +$infobox: #23272B; + +$text-normal: #B7BFC7; +$text-accent: #F6B33D; + +$link-normal: #FF6600; +$link-hover: #EB5252; +$link-visited: #ECECA3;