|
| 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