All files / src/assets theme.js

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

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 465x                                                                                          
const theme = {
  colors: {
    primary: '#282387',
    secondary: '#818181',
    tertiary: '#d5d5d5',
    black: '#263238',
    yellow: '#fdb813',
    darkGray: '#818181',
    mediumGray: '#d5d5d5',
    lightGray: '#f2f2f2',
    white: '#ffffff',
    blue: '#48a2d0',
    brightBlue: '#0068DE',
    ballBlue: '#2CC0EB',
    red: '#FF5656',
    blue1: '#e4efff',
    blue2: '#F6FAFF',
    grey1: '#666',
    grey2: '#c4c4c4',
    grey3: '#b2b9c5',
    grey4: '#dee2eb',
    grey5: '#fafafa',
    grey6: '#555d61',
    turquoise: '#20A4CA',
    green: '#99db0c',
    purple: '#505ca6',
    disabled: '#dfe1e1',
    transparentWhite1: '#ffffff32',
    transparentBlack1: '#263238e6',
    transparentBlue1: '#20a4cae6',
    blueElectric: '#66dffa',
    eturnityGrey: '#263238'
  },
 
  screen: {
    mobileSmall: '345px',
    mobile: '425px',
    mobileLarge: '530px',
    tablet: '768px',
    tabletLarge: '950px'
  },
  borderRadius: '4px'
}
 
export default theme