colorrole/index.css

22 lines
357 B
CSS
Raw Permalink Normal View History

2023-03-25 20:30:32 +00:00
:root {
--bg: #242424;
}
body {
background-color: var(--bg);
color: #ffffff;
2023-03-25 21:45:42 +00:00
}
#preview {
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
width: fit-content;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 500;
}
#output_error {
color: red;
}