@heycar-uikit/core
Version:
The React UI library from HeyCar
104 lines (92 loc) • 1.82 kB
CSS
:root {
/* heycar mint color */
/* mica blue color */
--color-mica-blue-500: #164ca3;
/* 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-championship-white: #fff;
}
/* Depricated. Do Not Use */
:root {
--spacing-1: 4px;
--spacing-2: 8px;
}
:root {
/* Font families */
--font-family-system: Objektiv, sans-serif, 'Helvetica Neue', Helvetica, Arial;
/* Font weights */
--font-weight-medium: 500;
}
/*
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-neutral-700: var(--color-tarmac-grey-700);
/*
Sizes
*/
}
body {
color: var(--color-neutral-700);
}
/*
* Base
*/
.badge__badge_1smar {
font-family: var(--font-family-system);
font-size: 14px;
padding: var(--spacing-1) var(--spacing-2);
display: inline-flex;
vertical-align: middle;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
border: 0;
box-shadow: none;
box-sizing: border-box;
text-decoration: none;
border-style: solid;
font-weight: var(--font-weight-medium);
line-height: 24px;
color: var(--color-championship-white);
background-color: var(--color-primary-500);
}
.badge__leftIcon_1smar {
padding-right: var(--spacing-1);
display: flex;
}