Commit e94e0f1c authored by Mark Otto's avatar Mark Otto
Browse files

implement @textColor for body text

parent ac581eeb
1 merge request!14752.0 wip
Showing with 3 additions and 3 deletions
+3 -3
No preview for this file type
...@@ -99,7 +99,7 @@ body { ...@@ -99,7 +99,7 @@ body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px; font-size: 13px;
line-height: 18px; line-height: 18px;
color: #555555; color: #333333;
background-color: #ffffff; background-color: #ffffff;
} }
a { a {
......
...@@ -11,7 +11,7 @@ body { ...@@ -11,7 +11,7 @@ body {
font-family: @baseFontFamily; font-family: @baseFontFamily;
font-size: @baseFontSize; font-size: @baseFontSize;
line-height: @baseLineHeight; line-height: @baseLineHeight;
color: @gray; color: @textColor;
background-color: @white; background-color: @white;
} }
......
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
@baseFontSize: 13px; @baseFontSize: 13px;
@baseFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif; @baseFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
@baseLineHeight: 18px; @baseLineHeight: 18px;
@textColor: @grayDark;
// Buttons // Buttons
@primaryButtonBackground: @linkColor; @primaryButtonBackground: @linkColor;
...@@ -96,4 +97,3 @@ ...@@ -96,4 +97,3 @@
// Fluid grid // Fluid grid
@fluidGridColumnWidth: 6.382978723%; @fluidGridColumnWidth: 6.382978723%;
@fluidGridGutterWidth: 2.127659574%; @fluidGridGutterWidth: 2.127659574%;
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment