Skip to content
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.

feat(Colors): Update Taylor Primary to Taylor Dark #76

Merged
merged 2 commits into from
Sep 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Form/__snapshots__/DateInput.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ exports[`<DateInput /> snapshot 1`] = `
}

.c3:focus {
border-color: #226EFF;
border-color: #0958F3;
}

.c3::-webkit-input-placeholder {
Expand Down
2 changes: 1 addition & 1 deletion src/Form/__snapshots__/PhoneInput.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ exports[`<PhoneInput /> snapshot 1`] = `
}

.c3:focus {
border-color: #226EFF;
border-color: #0958F3;
}

.c3::-webkit-input-placeholder {
Expand Down
4 changes: 2 additions & 2 deletions src/Tabs/__snapshots__/Tabs.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ exports[`<Tabs /> renders 1`] = `
display: block;
color: #494D55;
padding: 12px 8px;
border-bottom: 4px solid #226EFF;
border-bottom: 4px solid #0958F3;
}

.c4::hover {
color: #212b36;
border-color: #226EFF;
border-color: #0958F3;
}

.c5 {
Expand Down
6 changes: 3 additions & 3 deletions src/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export default (overrides = {}) => {
greyDarkest: '#494D55',

primaryLightest: '#CADCFF',
primaryLight: '#4D89FF',
primary: '#226EFF',
primaryDark: '#0958F3',
primaryLight: '#226EFF',
primary: '#0958F3',
primaryDark: '#0046CE',

secondaryLightest: '#DDF5ED',
secondaryLight: '#42C79B',
Expand Down