Skip to content

Commit

Permalink
more color schemes
Browse files Browse the repository at this point in the history
  • Loading branch information
aph6000 committed Jan 28, 2023
1 parent 24999e3 commit 84df891
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 0 deletions.
58 changes: 58 additions & 0 deletions schemes/Brick.theme.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/**
* @name Windows Classic Standard Theme
* @version 1.0.0
* @description Uses the Windows Standard color scheme from Windows 2000 instead of the default Windows 98 color scheme
* @author aph6000
*
* @website https://aph6002.neocities.org
* @source
*/

/* 98.css variables */

:root {
/* Color */
--ButtonFace: rgb(194, 191, 165);
--ButtonHilight: rgb(225, 224, 210);
--ButtonLight: rgb(194, 191, 165);
--ButtonShadow: rgb(141, 137, 97);
--ButtonDkShadow: rgb(0, 0, 0);
--ActiveTitle: rgb(128, 0, 0);
--GradientActiveTitle: rgb(176, 116, 64);
--InactiveTitle: rgb(141, 137, 97);
--GradientInactiveTitle: rgb(200, 184, 112);
--Link: rgb(0, 0, 255);
--HilightText: rgb(255, 255, 255);
--ButtonText: rgb(0, 0, 0);
--GrayText: rgb(128, 128, 128);
--Window: rgb(255, 255, 255);
--WindowText: rgb(0, 0, 0);
--Hilight: rgb(141, 137, 97);
--InfoWindow: rgb(225, 224, 210);
--InfoText: rgb(128, 0, 0);
--3DObjectsText: rgb(0, 0, 0);
--InactiveTitleText: rgb(225, 224, 210);
--TitleText: rgb(225, 224, 210);

--font-primary: var(--mainfont),"Microsoft Sans Serif",Whitney,"Helvetica Neue",Helvetica,Arial,sans-serif;
--font-display: var(--mainfont),"Microsoft Sans Serif",Ginto,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* Font settings */
:root {
--CaptionFont: "Tahoma";
--SmCaptionFont: "Pixelated MS Sans Serif";
--CaptionFont-text-size: 9pt;
--mainfont: "Pixelated MS Sans Serif";
--mainfontsize: 11px;
--mainfontcolor: var(--ButtonText);
--mainfontselectedcolor: var(--HilightText);
--InfoWindow-font: "Pixelated MS Sans Serif";
--InfoWindow-size: 11px;
}

/* Size settings */
:root {
--CaptionHeight: 18px;
--MenuHeight: 18px;
}
58 changes: 58 additions & 0 deletions schemes/W2KClassic.theme.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/**
* @name Windows Classic Standard Theme
* @version 1.0.0
* @description Uses the Windows Standard color scheme from Windows 2000 instead of the default Windows 98 color scheme
* @author aph6000
*
* @website https://aph6002.neocities.org
* @source
*/

/* 98.css variables */

:root {
/* Color */
--ButtonFace: rgb(212, 208, 200);
--ButtonHilight: rgb(255, 255, 255);
--ButtonLight: rgb(212, 208, 200);
--ButtonShadow: rgb(128, 128, 128);
--ButtonDkShadow: rgb(64, 64, 64);
--ActiveTitle: rgb(10, 36, 106);
--GradientActiveTitle: rgb(166, 202, 240);
--InactiveTitle: rgb(128, 128, 128);
--GradientInactiveTitle: rgb(192, 192, 192);
--Link: rgb(0, 0, 255);
--HilightText: rgb(255, 255, 255);
--ButtonText: rgb(0, 0, 0);
--GrayText: rgb(128, 128, 128);
--Window: rgb(255, 255, 255);
--WindowText: rgb(0, 0, 0);
--Hilight: rgb(10, 36, 106);
--InfoWindow: rgb(255, 255, 225);
--InfoText: rgb(0, 0, 0);
--3DObjectsText: rgb(0, 0, 0);

--font-primary: var(--mainfont),"Microsoft Sans Serif",Whitney,"Helvetica Neue",Helvetica,Arial,sans-serif;
--font-display: var(--mainfont),"Microsoft Sans Serif",Ginto,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* Font settings */
:root {
--CaptionFont: "Tahoma";
--SmCaptionFont: "Tahoma";
--TitleText: #fff;
--InactiveTitleText: #c0c0c0;
--CaptionFont-text-size: 11px;
--mainfont: "Tahoma";
--mainfontsize: 11px;
--mainfontcolor: var(--ButtonText);
--mainfontselectedcolor: var(--HilightText);
--InfoWindow-font: "Tahoma";
--InfoWindow-size: 11px;
}

/* Size settings */
:root {
--CaptionHeight: 18px;
--MenuHeight: 18px;
}

0 comments on commit 84df891

Please sign in to comment.