From: Jay Sitter Date: Sat, 17 Jun 2023 14:56:17 +0000 (-0400) Subject: fix: Move var to grays area X-Git-Url: http://these/git/?a=commitdiff_plain;h=77a3e57f9475cc1ab0d96cb1b964a8915f2b650a;p=lemmy-ui.git fix: Move var to grays area --- diff --git a/src/assets/css/themes/_variables.darkly.scss b/src/assets/css/themes/_variables.darkly.scss index a706739..a618d05 100644 --- a/src/assets/css/themes/_variables.darkly.scss +++ b/src/assets/css/themes/_variables.darkly.scss @@ -9,6 +9,7 @@ $gray-600: #888; $gray-700: #444; $gray-800: #303030; $gray-900: #222; +$black: #000; // Writing these maps is necessary for Bootstrap theming: // https://getbootstrap.com/docs/4.6/getting-started/introduction/ @@ -50,7 +51,6 @@ $theme-colors: ( "dark": $dark, ); -$black: #000; $body-color: $gray-300; $body-bg: $gray-900; $link-color: $success; diff --git a/src/assets/css/themes/_variables.litely.scss b/src/assets/css/themes/_variables.litely.scss index eb49224..6706c3e 100644 --- a/src/assets/css/themes/_variables.litely.scss +++ b/src/assets/css/themes/_variables.litely.scss @@ -9,6 +9,7 @@ $gray-600: #6c757d; $gray-700: #495057; $gray-800: #343a40; $gray-900: #212529; +$black: #222; // Writing these maps is necessary for Bootstrap theming: // https://getbootstrap.com/docs/4.6/getting-started/introduction/ @@ -52,7 +53,6 @@ $theme-colors: ( "danger": $danger, ); -$black: #222; $body-color: $gray-700; $body-bg: #fff; $link-color: $primary;