KanbanCloneAngular/src/styles.css

18 lines
No EOL
393 B
CSS

/* You can add global styles to this file, and also import other style files */
:root{
--background-color: whitesmoke;
--primary-color: #4a90e2;
--secondary-color: #f5f5f5;
--text-color: black;
}
body {
margin: 0;
width: 100%;
height: fit-content;
font-family: Arial, sans-serif;
background-color: var(--background-color);
color: var(--text-color);
}