From b3c4b9e87d75920e4186dd02a693af10364a92cb Mon Sep 17 00:00:00 2001 From: u68467 Date: Thu, 13 Feb 2025 13:01:10 +0100 Subject: [PATCH] Add discord98.css --- discord98.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 discord98.css diff --git a/discord98.css b/discord98.css new file mode 100644 index 0000000..483c8cb --- /dev/null +++ b/discord98.css @@ -0,0 +1,29 @@ +/** + * @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 */