Skip to content

Commit 7bdb493

Browse files
committed
fix(peggypastels): fix peggyPastels not exported
1 parent 1fd382f commit 7bdb493

File tree

1 file changed

+34
-35
lines changed

1 file changed

+34
-35
lines changed

src/common/themes/peggysPastels.js

+34-35
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,38 @@
22
* https://www.deviantart.com/tpenguinltg/art/Peggy-s-Pastels-505540096
33
*/
44

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)'
5+
export default {
6+
name: 'peggysPastels',
7+
anchor: 'rgb(0, 128, 128)',
8+
anchorVisited: 'rgb(0, 128, 128)',
9+
borderDark: 'rgb(222, 69, 96)',
10+
borderDarkest: 'rgb(64, 64, 64)',
11+
borderLight: 'rgb(247, 219, 215)',
12+
borderLightest: 'rgb(250, 224, 228)',
13+
canvas: 'rgb(244, 255, 255)',
14+
canvasText: 'rgb(0, 0, 0)',
15+
canvasTextDisabled: 'rgb(222, 69, 96)',
16+
canvasTextDisabledShadow: 'rgb(250, 224, 228)',
17+
canvasTextInvert: 'rgb(0, 0, 0)',
18+
checkmark: 'rgb(0, 0, 0)',
19+
checkmarkDisabled: 'rgb(222, 69, 96)',
20+
desktopBackground: 'rgb(162, 219, 210)',
21+
flatDark: 'rgb(222, 69, 96)',
22+
flatLight: 'rgb(247, 219, 215)',
23+
focusSecondary: 'rgb(250, 224, 228)',
24+
headerBackground:
25+
'linear-gradient(to right, rgb(0, 191, 188), rgb(202, 156, 185))',
26+
headerNotActiveBackground:
27+
'linear-gradient(to right, rgb(0, 187, 169), rgb(236, 145, 162))',
28+
headerNotActiveText: 'rgb(0, 85, 77)',
29+
headerText: 'rgb(255, 255, 255)',
30+
hoverBackground: 'rgb(162, 219, 210)',
31+
material: 'rgb(244, 193, 202)',
32+
materialDark: 'rgb(0, 187, 169)',
33+
materialText: 'rgb(0, 0, 0)',
34+
materialTextDisabled: 'rgb(222, 69, 96)',
35+
materialTextDisabledShadow: 'rgb(250, 224, 228)',
36+
materialTextInvert: 'rgb(0, 0, 0)',
37+
progress: 'rgb(162, 219, 210)',
38+
tooltip: 'rgb(204, 255, 255)'
3839
};
39-
40-
export default mapFromWindowsTheme('peggysPastels', theme, true);

0 commit comments

Comments
 (0)