@heycar-uikit/core
Version:
The React UI library from HeyCar
117 lines (104 loc) • 1.94 kB
CSS
:root {
/* heycar mint color */
/* mica blue color */
/* 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-50: #f3f3f3;
--color-tarmac-grey-700: #303030;
/* brand colors */
}
/* Depricated. Do Not Use */
:root {
--gap-3xs: 2px;
--gap-2xs: 4px;
--gap-xs: 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-neutral-700: var(--color-tarmac-grey-700);
/*
Sizes
*/
}
body {
color: var(--color-neutral-700);
}
/*
* Colors
*/
:root {
/* background color */
--pill-background-color: var(--color-tarmac-grey-50);
/* text color */
--pill-text-color: var(--color-tarmac-grey-700);
}
/*
* Base
*/
.pill__pill_12hpb {
font-size: 14px;
padding: var(--gap-3xs) var(--gap-xs);
display: inline-flex;
vertical-align: middle;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
border: 0;
min-height: 28px;
box-shadow: none;
box-sizing: border-box;
text-decoration: none;
border-style: solid;
background-color: var(--pill-background-color);
color: var(--pill-text-color);
font-size: 14px;
font-weight: var(--font-weight-medium);
font-family: var(--font-family-system);
}
/*
* Icon
*/
.pill__leftIcon_12hpb {
padding-right: var(--gap-2xs);
display: flex;
}