mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 07:40:07 +02:00
8295bd6882
this shall be a progressive process
37 lines
525 B
JavaScript
37 lines
525 B
JavaScript
import { css } from 'styled-components';
|
|
|
|
export const fontFamily = css`
|
|
font-family:
|
|
"Libre Franklin",
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
"Segoe UI",
|
|
Roboto,
|
|
Oxygen-Sans,
|
|
Ubuntu,
|
|
Cantarell,
|
|
Helvetica,
|
|
sans-serif;
|
|
`;
|
|
|
|
export const semibold = css`
|
|
font-weight: 600;
|
|
`;
|
|
|
|
export const medium = css`
|
|
font-weight: 500;
|
|
`;
|
|
|
|
export const normal = css`
|
|
font-weight: 400;
|
|
`;
|
|
|
|
export default {
|
|
fontFamily,
|
|
semibold,
|
|
medium,
|
|
normal
|
|
};
|
|
|
|
export { default as fonts } from './fonts';
|