@heycar-uikit/core
Version:
The React UI library from HeyCar
122 lines (108 loc) • 2.15 kB
CSS
:root {
/* heycar mint color */
--color-heycar-mint-500: #00cea5;
/* mica blue color */
--color-mica-blue-700: #052962;
/* sunbeam blue color */
/* mustang yellow color */
/* old ferrari red color */
/* -- fantasy name of "green" color to be defined -- */
/* -- fantasy name of "whatsapp" color to be defined -- */
/* -- fantasy name of "red" color to be defined -- */
/* tarmac grey color */
--color-tarmac-grey-700: #303030;
/* brand colors */
--color-mica-blue: var(--color-mica-blue-700);
--color-championship-white: #fff;
}
/* Depricated. Do Not Use */
:root {
/* Font families */
/* Font weights */
}
/*
Heading
*/
/*
Sub-Heading
*/
/*
Body
*/
/*
Caption
*/
/*
Overline
*/
/*
Button
*/
/*
Button Old - DO NOT USE
*/
/* If this is ever changed please update breakpoints.json as well */
/* Mobile */
/* Tablet */
/* Desktop */
/* Default theme (light) */
:root {
/*
Colors
*/
--color-neutral-700: var(--color-tarmac-grey-700);
/*
Sizes
*/
}
body {
color: var(--color-neutral-700);
}
/*
* Colors
*/
:root {
/* primary */
--fill-primary-color: var(--color-championship-white);
--fill-primary-undermark-color: var(--color-heycar-mint-500);
/* secondary */
--fill-secondary-color: var(--color-mica-blue);
--fill-secondary-undermark-color: var(--color-heycar-mint-500);
/* tertiary */
--fill-tertiary-color: var(--color-mica-blue);
--fill-tertiary-undermark-color: var(--color-championship-white);
}
/*
* Base
*/
.logo__logo_e7ffe {
-webkit-user-select: none;
user-select: none;
width: 1em;
height: 1em;
display: inline-block;
fill: currentColor;
flex-shrink: 0;
color: inherit;
}
/*
* Colors
*/
.logo__dark_bg_e7ffe {
fill: var(--fill-primary-color);
}
.logo__light_bg_e7ffe {
fill: var(--fill-secondary-color);
}
.logo__mint_bg_e7ffe {
fill: var(--fill-tertiary-color);
}
.logo__undermark_dark_bg_e7ffe {
fill: var(--fill-primary-undermark-color);
}
.logo__undermark_light_bg_e7ffe {
fill: var(--fill-secondary-undermark-color);
}
.logo__undermark_mint_bg_e7ffe {
fill: var(--fill-tertiary-undermark-color);
}