Skip to content

Commit

Permalink
Color: update dark gray color to #111 (#648) (#648)
Browse files Browse the repository at this point in the history
  • Loading branch information
christianvuerings committed Feb 5, 2020
1 parent 1929a77 commit 8e83e76
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,8 @@

### Minor

- Color: update dark gray color to #111 (#648)

### Patch

</details>
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt/src/Button.css
@@ -1,6 +1,6 @@
:root {
--blue: #0074e8;
--darkGray: #333;
--darkGray: #111;
--red: #e60023;
--lightGray: #efefef;
--white: #fff;
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt/src/Checkbox.css
Expand Up @@ -13,7 +13,7 @@
}

.borderDark {
border-color: #333;
border-color: #111;
}

.check {
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt/src/Colors.css
Expand Up @@ -4,7 +4,7 @@
--white: #fff;
--lightGray: #efefef;
--gray: #8e8e8e;
--darkGray: #333;
--darkGray: #111;

/* secondary colors */
--green: #0fa573;
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt/src/Pog.css
@@ -1,7 +1,7 @@
:root {
--lightGray: #efefef;
--gray: #8e8e8e;
--darkGray: #333;
--darkGray: #111;
}

.pog {
Expand Down
4 changes: 2 additions & 2 deletions packages/gestalt/src/Switch.css
Expand Up @@ -28,7 +28,7 @@ html[dir="rtl"] .switch {

.switchDarkGray {
composes: darkGrayBg from "./Colors.css";
border-color: #333;
border-color: #111;
}

.switchGray {
Expand Down Expand Up @@ -67,7 +67,7 @@ html[dir="rtl"] .switch {
}

.sliderDark {
border-color: #333;
border-color: #111;
}

.sliderLight {
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt/src/Tabs.css
Expand Up @@ -29,7 +29,7 @@

.tabIsNotActive:focus,
.tabIsNotActive:hover {
color: #333;
color: #111;
}

.tabIsActive {
Expand Down

0 comments on commit 8e83e76

Please sign in to comment.