File size: 1,428 Bytes
3d7d9b5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | @import "tailwindcss";
@theme {
--color-canvas-bg: #1C1C1E;
--color-panel-bg: #2A2A2E;
--color-panel-border: #3A3A3E;
--color-ui-primary: #E5E5E7;
--color-ui-secondary: #88888A;
--color-accent-blue: #0A84FF;
--color-accent-green: #30D158;
--color-accent-amber: #FFD60A;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: var(--color-canvas-bg);
color: var(--color-ui-primary);
font-family: system-ui, -apple-system, sans-serif;
user-select: none;
}
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.2);
}
/* Rich Text Editor Overrides */
.rich-text-editor ul {
list-style-type: disc;
padding-left: 1.5em;
margin-top: 0.2em;
margin-bottom: 0.2em;
}
.rich-text-editor ol {
list-style-type: decimal;
padding-left: 1.5em;
margin-top: 0.2em;
margin-bottom: 0.2em;
}
.rich-text-editor a {
color: #0A84FF;
text-decoration: underline;
cursor: pointer;
}
|