mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
simplifying and segmenting color variables
This commit is contained in:
@@ -6,9 +6,9 @@
|
||||
// --------------------------------------------------
|
||||
|
||||
html {
|
||||
color: $primary_text_color;
|
||||
color: $primary;
|
||||
font: #{$base-font-size}/#{$base-line-height} $base-font-family;
|
||||
background-color: $primary_background_color;
|
||||
background-color: $secondary;
|
||||
overflow-y: scroll;
|
||||
-webkit-font-smoothing: subpixel-antialiased;
|
||||
}
|
||||
@@ -17,17 +17,17 @@ html {
|
||||
// --------------------------------------------------
|
||||
|
||||
a {
|
||||
color: $link-color;
|
||||
color: $tertiary;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
&:visited {
|
||||
color: $link-color-visited;
|
||||
color: $tertiary;
|
||||
}
|
||||
&:hover {
|
||||
color: $link-color-hover;
|
||||
color: $tertiary;
|
||||
}
|
||||
&:active {
|
||||
color: $link-color-active;
|
||||
color: $tertiary;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,7 +39,7 @@ hr {
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
border: 0;
|
||||
border-top: 1px solid $primary_border_color;
|
||||
border-top: 1px solid scale-color($primary, $lightness: 90%);
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user