@heycar-uikit/core
Version:
The React UI library from HeyCar
98 lines (86 loc) • 1.42 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-300: #b5b5b5;
--color-tarmac-grey-700: #303030;
/* brand colors */
}
/* Depricated. Do Not Use */
:root {
--gap-1xs: 6px;
--gap-s: 12px;
--gap-2s: 14px;
--gap-3xl: 32px;
}
: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-300: var(--color-tarmac-grey-300);
--color-neutral-700: var(--color-tarmac-grey-700);
/*
Sizes
*/
}
body {
color: var(--color-neutral-700);
}
/*
* Colors
*/
:root {
/* border */
--chip-border-color: var(--color-neutral-300);
}
/*
* Choice
*/
.choice {
border: 1px solid var(--chip-border-color);
padding: var(--gap-s) var(--gap-2s);
}
/*
* Filter
*/
.filter {
padding: var(--gap-1xs) var(--gap-s);
border: 1px solid var(--chip-border-color);
height: var(--gap-3xl);
}