Separated out the theme tiles

combined data axes into the index file
This commit is contained in:
2025-12-08 22:46:53 -06:00
parent 4bf7505592
commit a1349f9cd1
16 changed files with 384 additions and 711 deletions

View File

@@ -0,0 +1,43 @@
/* Cyberpunk Theme */
:global(.theme-cyberpunk) {
font-family: 'Courier New', monospace;
background: #0a0e27;
color: #00ffff;
}
:global(.theme-cyberpunk .window){
background: rgba(10, 14, 39, 0.95);
border: 2px solid #00ffff;
box-shadow: 0 0 20px #ff00ff;
}
:global(.theme-cyberpunk .title-bar ){
background: linear-gradient(90deg, #ff00ff, #00ffff);
color: #000;
padding: 12px;
font-weight: bold;
text-transform: uppercase;
}
:global(.theme-cyberpunk fieldset ){
border: 1px solid #ff00ff;
}
:global(.theme-cyberpunk legend ){
color: #ff00ff;
text-transform: uppercase;
}
:global(.theme-cyberpunk button ){
background: transparent;
border: 2px solid #ff00ff;
color: #ff00ff;
font-family: 'Courier New', monospace;
text-transform: uppercase;
padding: 10px 25px;
}
:global(.theme-cyberpunk button:hover ){
background: #ff00ff;
color: #000;
}