Spaces:
Sleeping
Sleeping
File size: 3,269 Bytes
b4d8480 | 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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | /* AeonOS Design System for Gradio Spaces */
.gradio-container {
background: #09090b !important;
color: #fafafa !important;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}
/* Surface panels */
.block, .panel, .form, .wrap, .contain {
background: #0c0c0f !important;
border-color: #1f1f23 !important;
border-radius: 6px !important;
}
/* Elevated panels */
.gr-panel, .gr-box, .gr-form {
background: #111114 !important;
border: 1px solid #1f1f23 !important;
}
/* Text */
.prose, .markdown, label, .label-wrap {
color: #fafafa !important;
}
.prose h1, .prose h2, .prose h3, .markdown h1, .markdown h2, .markdown h3 {
color: #fafafa !important;
}
.prose p, .markdown p {
color: #a1a1aa !important;
}
/* Secondary text */
.secondary-text, .caption, .info {
color: #71717a !important;
}
/* Links */
a, .prose a, .markdown a {
color: #3b82f6 !important;
text-decoration: none !important;
}
a:hover {
color: #60a5fa !important;
}
/* Inputs */
input, textarea, select, .gr-input, .gr-text-input {
background: #09090b !important;
border: 1px solid #1f1f23 !important;
color: #fafafa !important;
border-radius: 6px !important;
font-size: 16px !important;
}
input:focus, textarea:focus {
border-color: #3b82f6 !important;
outline: none !important;
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15) !important;
}
/* Primary button */
.primary, button.primary, .gr-button-primary {
background: #3b82f6 !important;
color: #fafafa !important;
border: none !important;
border-radius: 6px !important;
font-weight: 500 !important;
transition: background 150ms ease !important;
}
.primary:hover, button.primary:hover {
background: #60a5fa !important;
}
/* Secondary buttons */
button, .gr-button {
background: #18181b !important;
color: #a1a1aa !important;
border: 1px solid #1f1f23 !important;
border-radius: 6px !important;
}
button:hover, .gr-button:hover {
background: #1e1e22 !important;
border-color: #27272a !important;
}
/* Tables */
table {
border-collapse: collapse !important;
}
th {
background: #111114 !important;
color: #a1a1aa !important;
border-bottom: 1px solid #1f1f23 !important;
padding: 8px 12px !important;
text-align: left !important;
}
td {
border-bottom: 1px solid #17171a !important;
padding: 8px 12px !important;
color: #fafafa !important;
}
/* Code blocks */
code, pre {
background: #111114 !important;
color: #93c5fd !important;
border-radius: 4px !important;
border: 1px solid #1f1f23 !important;
}
/* Accent glow for key metrics */
.metric-highlight {
color: #3b82f6 !important;
font-weight: 600 !important;
}
/* Status colors */
.success { color: #22c55e !important; }
.warning { color: #eab308 !important; }
.error { color: #ef4444 !important; }
/* Dataset/Examples component */
.dataset-row, .sample-row {
background: #111114 !important;
border: 1px solid #1f1f23 !important;
}
.dataset-row:hover, .sample-row:hover {
background: #18181b !important;
}
/* Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #09090b;
}
::-webkit-scrollbar-thumb {
background: #27272a;
border-radius: 3px;
}
/* Footer */
footer {
color: #52525b !important;
}
|