This repository has no description
1@import './styles/variables.css';
2
3body {
4 margin: 0;
5 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
6 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
7 sans-serif;
8 -webkit-font-smoothing: antialiased;
9 -moz-osx-font-smoothing: grayscale;
10}
11
12code {
13 font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
14 monospace;
15}
16
17/* Example: Add transition to the body */
18body {
19 transition: background-color 0.3s ease, color 0.3s ease;
20}
21
22/* src/index.css */
23
24body {
25 margin: 0;
26 font-family: Arial, sans-serif;
27 background-color: #f0f0f0; /* Light background */
28 color: #000000; /* Dark text */
29 transition: background-color 0.3s ease, color 0.3s ease;
30}
31
32.dark-mode body {
33 background-color: #121212; /* Dark background */
34 color: #ffffff; /* Light text */
35}
36
37
38/* Similarly, add transitions to other elements as needed */