All files / utils/variables colors.js

0% Statements 0/14
100% Branches 0/0
100% Functions 0/0
0% Lines 0/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46                                                                                           
const Blue = {
  dark: '#1e5281',
  semiDark: '#2870b2',
  normal: '#6197c6',
  semiLight: '#afcef3',
  light: '#e7f0f7'
}
const Green = {
  dark: '#557c23',
  semiDark: '#6f9e32',
  normal: '#8cc152',
  semiLight: '#afd485',
  light: '#dcecc9'
}
const Yellow = {
  dark: '#b98b1f',
  semiDark: '#ffc107',
  normal: '#fed057',
  semiLight: '#fee194',
  light: '#fff2d2'
}
const Red = {
  dark: '#b63f43',
  semiDark: '#f9575b',
  normal: '#fb8486',
  semiLight: '#fbb0b3',
  light: '#fcdfdf'
}
const Gray = {
  dark: '#496072',
  semiDark: '#95a3b7',
  normal: '#c5d0e1',
  semiLight: '#e5edf4',
  light: '#f4f5f8'
}
const Black = {
  dark: '#2c3848',
  semiDark: '#314056',
  normal: '#3b495e',
  semiLight: '#4f5c6f',
  light: '#646f80'
}
 
export default { Blue, Green, Yellow, Red, Gray, Black }
export { Blue, Green, Yellow, Red, Gray, Black }