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

Commit

Permalink
fix: a11y colors
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobBlomgren authored May 10, 2019
1 parent 7916fac commit 2b86728
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/styles/color.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export default ({ a11yColors = false }) => ({
// BRAND
brandBlue: '#00C8F5',
brandGreen: '#D2F500',
brandPink: '#FF2B83',
brandTurquoise: '#00F0E1',
brandBlue: a11yColors ? '#385E9D' : '#00C8F5',
brandGreen: a11yColors ? '#3A913F' : '#D2F500',
brandPink: a11yColors ? '#AC135A' : '#FF2B83',
brandTurquoise: a11yColors ? '#009195' : '#00F0E1',

// COMPLEMENTARY BRAND COLOURS
complementaryBlue1: '#385E9D',
Expand Down Expand Up @@ -33,5 +33,5 @@ export default ({ a11yColors = false }) => ({
cta: a11yColors ? '#2D67FF' : '#0046FF',
positive: a11yColors ? '#008A00' : '#00D200',
negative: a11yColors ? '#E81700' : '#FF1900',
index: a11yColors ? '#FFCF00' : '#C15700',
index: a11yColors ? '#C15700' : '#FFCF00',
});

1 comment on commit 2b86728

@vercel
Copy link

@vercel vercel bot commented on 2b86728 May 10, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.