We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9646664 commit e1a95ebCopy full SHA for e1a95eb
core/_buttons.scss
@@ -6,7 +6,7 @@ button,
6
background-color: $action-color;
7
border: 0;
8
border-radius: var(--border-radius);
9
- color: inherit;
+ color: $action-color--contrast;
10
cursor: pointer;
11
display: inline-block;
12
font-family: var(--font-family-base);
core/_variables.scss
@@ -2,14 +2,16 @@
2
$blue: #1565c0;
3
$blue-light: #3b83d5;
4
$gray: #333;
5
+$white: #fff;
// Font Colors
$font-color--base: $gray;
$action-color: $blue;
$action-color--alt: $blue-light;
+$action-color--contrast: $white;
13
// Background Colors
-$viewport-background-color: #fff;
14
+$viewport-background-color: $white;
15
16
:root {
17
// Typography
0 commit comments