30 lines
871 B
CSS
30 lines
871 B
CSS
/**
|
||
* @name Windows 98 Retro Theme for Discord
|
||
* @description A custom theme inspired by Windows 98 (Chicago) using 98.css.
|
||
* @author YourName
|
||
* @version 1.0.0
|
||
*/
|
||
|
||
@import url('https://unpkg.com/98.css');
|
||
|
||
/* Override Discord’s backdrop with a flat Windows 98 grey */
|
||
#app-mount {
|
||
background: #c0c0c0 !important;
|
||
}
|
||
|
||
/* Use 98.css font and border styles for buttons */
|
||
button, .button {
|
||
font-family: "MS Sans Serif", sans-serif !important;
|
||
border: 2px outset #fff !important;
|
||
background: linear-gradient(to bottom, #e0e0e0, #c0c0c0) !important;
|
||
}
|
||
|
||
/* Customize modals to have a vintage window look */
|
||
.root__49fc1 {
|
||
border: 2px solid #fff !important;
|
||
box-shadow: 2px 2px 0 #000 !important;
|
||
background: #d4d0c8 !important; /* Typical Windows 98 window background */
|
||
}
|
||
|
||
/* Additional overrides can be added for sidebars, inputs, and other components */
|