All files / client/constants colors.ts

0% Statements 0/20
100% Branches 0/0
100% Functions 0/0
0% Lines 0/20

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 47 48 49 50 51                                                                                                     
// Imported from https://github.com/twbs/bootstrap/blob/v4.3.1/scss/_variables.scss
 
export const white = '#fff'
export const gray = {
  100: '#f8f9fa',
  200: '#e9ecef',
  300: '#dee2e6',
  400: '#ced4da',
  500: '#adb5bd',
  600: '#6c757d',
  700: '#495057',
  800: '#343a40',
  900: '#212529',
}
export const black = '#000'
 
export const blue = '#007bff'
export const indigo = '#6610f2'
export const purple = '#6f42c1'
export const pink = '#e83e8c'
export const red = '#dc3545'
export const orange = '#fd7e14'
export const yellow = '#ffc107'
export const green = '#28a745'
export const teal = '#20c997'
export const cyan = '#17a2b8'
 
export const colors = {
  blue,
  indigo,
  purple,
  pink,
  red,
  orange,
  yellow,
  green,
  teal,
  cyan,
  white,
  grayLight: gray[100],
  gray: gray[600],
  grayDark: gray[800],
}
 
export const success = green
export const info = cyan
export const warning = yellow
export const danger = red
export const light = gray[100]
export const dark = gray[800]