Skip to content

Commit d87a2e0

Browse files
tpenguinltgarturbien
authored andcommitted
feat(themes): add peggysPastels theme
"Peggy's Pastels" by tPenguinLTG https://www.deviantart.com/tpenguinltg/art/Peggy-s-Pastels-505540096
1 parent 2559656 commit d87a2e0

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

src/common/themes/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import ninjaTurtles from './ninjaTurtles';
1919
import olive from './olive';
2020
import original from './original';
2121
import pamelaAnderson from './pamelaAnderson';
22+
import peggysPastels from './peggysPastels';
2223
import plum from './plum';
2324
import rainyDay from './rainyDay';
2425
import rose from './rose';
@@ -55,6 +56,7 @@ export default {
5556
olive,
5657
original,
5758
pamelaAnderson,
59+
peggysPastels,
5860
plum,
5961
rainyDay,
6062
rose,

src/common/themes/peggysPastels.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/* "Peggy's Pastels" by tPenguinLTG
2+
* https://www.deviantart.com/tpenguinltg/art/Peggy-s-Pastels-505540096
3+
*/
4+
5+
const { mapFromWindowsTheme } = require('../utils');
6+
7+
const theme = {
8+
ActiveBorder: 'rgb(244, 193, 202)',
9+
ActiveTitle: 'rgb(0, 191, 188)',
10+
AppWorkspace: 'rgb(255, 184, 182)',
11+
Background: 'rgb(162, 219, 210)',
12+
ButtonAlternateFace: 'rgb(181, 181, 181)',
13+
ButtonDkShadow: 'rgb(64, 64, 64)',
14+
ButtonFace: 'rgb(244, 193, 202)',
15+
ButtonHilight: 'rgb(250, 224, 228)',
16+
ButtonLight: 'rgb(247, 219, 215)',
17+
ButtonShadow: 'rgb(222, 69, 96)',
18+
ButtonText: 'rgb(0, 0, 0)',
19+
GradientActiveTitle: 'rgb(202, 156, 185)',
20+
GradientInactiveTitle: 'rgb(236, 145, 162)',
21+
GrayText: 'rgb(222, 69, 96)',
22+
Hilight: 'rgb(162, 219, 210)',
23+
HilightText: 'rgb(0, 0, 0)',
24+
HotTrackingColor: 'rgb(0, 128, 128)',
25+
InactiveBorder: 'rgb(244, 193, 202)',
26+
InactiveTitle: 'rgb(0, 187, 169)',
27+
InactiveTitleText: 'rgb(0, 85, 77)',
28+
InfoText: 'rgb(0, 0, 0)',
29+
InfoWindow: 'rgb(204, 255, 255)',
30+
Menu: 'rgb(244, 193, 202)',
31+
MenuHilight: 'rgb(162, 219, 210)',
32+
MenuText: 'rgb(0, 0, 0)',
33+
Scrollbar: 'rgb(250, 224, 228)',
34+
TitleText: 'rgb(255, 255, 255)',
35+
Window: 'rgb(244, 255, 255)',
36+
WindowFrame: 'rgb(0, 0, 0)',
37+
WindowText: 'rgb(0, 0, 0)'
38+
};
39+
40+
export default mapFromWindowsTheme('peggysPastels', theme, false);
41+
export const peggysPastelsG = mapFromWindowsTheme(
42+
'peggysPastelsG',
43+
theme,
44+
true
45+
);

0 commit comments

Comments
 (0)