Files
wok-able/assets/src/styles/Variables.ts

19 lines
319 B
TypeScript
Raw Normal View History

2022-03-21 01:37:16 +01:00
import {css} from "styled-components";
const Variables = css`
:root {
--navbar-width: 200px;
--toolbar-height: 64px;
2022-04-04 21:22:47 +02:00
--light: #E2EDDD;
--dark: #0B1C48;
--card: #DECABA;
--green: #92CF93;
2022-03-21 01:37:16 +01:00
--background: white;
--foreground: black;
2022-03-23 01:53:45 +01:00
--card-size: 300px;
2022-03-21 01:37:16 +01:00
}
`;
export default Variables;