@heycar-uikit/core
Version:
The React UI library from HeyCar
106 lines (92 loc) • 1.75 kB
CSS
:root {
/* heycar mint color */
--color-heycar-mint-500: #00cea5;
/* mica blue color */
--color-mica-blue-500: #164ca3;
/* sunbeam blue color */
--color-sunbeam-blue-500: #c0e6ff;
/* 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 */
}
/* 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-primary-500: var(--color-mica-blue-500);
--color-secondary-500: var(--color-heycar-mint-500);
--color-tertiary-500: var(--color-sunbeam-blue-500);
--color-neutral-700: var(--color-tarmac-grey-700);
/*
Sizes
*/
}
body {
color: var(--color-neutral-700);
}
/*
* Vars
*/
:root {
/* primary */
--icon-primary-color: var(--color-primary-500);
/* secondary */
--icon-secondary-color: var(--color-secondary-500);
/* tertiary */
--icon-tertiary-color: var(--color-tertiary-500);
}
.svgIcon {
-webkit-user-select: none;
user-select: none;
width: 1em;
height: 1em;
display: inline-block;
fill: currentColor;
flex-shrink: 0;
color: inherit;
}
.primary {
color: var(--icon-primary-color);
}
.secondary {
color: var(--icon-secondary-color);
}
.tertiary {
color: var(--icon-tertiary-color);
}