Spaces:
Running
Running
File size: 671 Bytes
057e8b6 2296dc4 057e8b6 2296dc4 057e8b6 2296dc4 057e8b6 2296dc4 057e8b6 2296dc4 057e8b6 | 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 | /* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #d1d5db;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #9ca3af;
}
.dark ::-webkit-scrollbar-thumb {
background: #4b5563;
}
.dark ::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
/* Syntax Highlighting Simulation for the C code block */
code {
color: #e5e7eb; /* gray-200 */
}
pre code .keyword { color: #c084fc; } /* purple-400 */
pre code .type { color: #60a5fa; } /* blue-400 */
pre code .number { color: #a3e635; } /* lime-400 */ |