Skip to content

Commit

Permalink
Update to use theme color.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joen Asmussen committed Feb 27, 2020
1 parent 471d54d commit eb1559c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/base-styles/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $medium-gray-text: #757575;
$light-gray-secondary: #ccc;
$light-gray-tertiary: #e7e8e9;
$theme-color: theme(button);
$blue-medium-focus: #3858e9; // @todo: Currently being used as "spot" color. Needs to be considered in context of themes.
$blue-medium-focus: theme(button);
$blue-medium-focus-dark: #fff;

// Dark opacities, for use with light themes.
Expand Down
10 changes: 5 additions & 5 deletions packages/base-styles/index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
exports.adminColorSchemes = {
defaults: {
primary: '#0085ba',
secondary: '#3858e9',
primary: '#3858e9',
secondary: '#1635bb',
toggle: '#3858e9',
button: '#3858e9',
outlines: '#3858e9',
},
themes: {
'admin-color-light': {
primary: '#0085ba',
secondary: '#c75726',
primary: '#3858e9',
secondary: '#1635bb',
toggle: '#3858e9',
button: '#0085ba',
button: '#3858e9',
outlines: '#3858e9',
},
'admin-color-blue': {
Expand Down

0 comments on commit eb1559c

Please sign in to comment.