19 lines
319 B
TypeScript
19 lines
319 B
TypeScript
import {css} from "styled-components";
|
|
|
|
const Variables = css`
|
|
:root {
|
|
--navbar-width: 200px;
|
|
--toolbar-height: 64px;
|
|
|
|
--light: #E2EDDD;
|
|
--dark: #0B1C48;
|
|
--card: #DECABA;
|
|
--green: #92CF93;
|
|
--background: white;
|
|
--foreground: black;
|
|
--card-size: 300px;
|
|
}
|
|
`;
|
|
|
|
export default Variables;
|