├── screenshots ├── vim.png ├── hyperterm.png └── themecolors.png ├── README.md ├── package.json └── index.js /screenshots/vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrnh/hyper-mahoushoujo/HEAD/screenshots/vim.png -------------------------------------------------------------------------------- /screenshots/hyperterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrnh/hyper-mahoushoujo/HEAD/screenshots/hyperterm.png -------------------------------------------------------------------------------- /screenshots/themecolors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrnh/hyper-mahoushoujo/HEAD/screenshots/themecolors.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![colors](screenshots/themecolors.png) 2 | 3 | # hyper-mahoushoujo 4 | A bright, energetic, light theme for [Hyper.app](https://hyper.is), inspired 5 | by magical girls ✨ 6 | 7 | ![screenshot](screenshots/hyperterm.png) 8 | 9 | ![vim](screenshots/vim.png) 10 | 11 | ### installation 12 | In your `.hyper.js`, add the package name to your plugins array: 13 | 14 | ```js 15 | plugins: [ 16 | 'hyper-mahoushoujo', 17 | ] 18 | ``` 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hyper-mahoushoujo", 3 | "version": "1.0.2", 4 | "description": "Light theme for Hyper inspired by magical girls.", 5 | "main": "index.js", 6 | "keywords": [ 7 | "hyper", 8 | "hyper-theme", 9 | "hyperterm", 10 | "hyperterm-theme", 11 | "hyperjs", 12 | "theme", 13 | "light", 14 | "pink", 15 | "magical girl", 16 | "bright" 17 | ], 18 | "author": "Ashley Trinh", 19 | "license": "MIT", 20 | "repository": { 21 | "type": "git", 22 | "url": "git+https://github.com/atrnh/hyper-mahoushoujo.git" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const cursorColor = '#abc8ff'; 2 | const foregroundColor = '#453d40'; 3 | const backgroundColor = '#ffffff'; 4 | const colors = { 5 | black: '#abc8ff', 6 | lightBlack: '#a1a2fb', 7 | red: '#ff98c5', 8 | lightRed: '#ff71b5', 9 | green: '#54d7d0', 10 | lightGreen: '#27b2ca', 11 | yellow: '#fcd198', 12 | lightYellow: '#fca760', 13 | blue: '#93e0ff', 14 | lightBlue: '#6693b3', 15 | magenta: '#9999db', 16 | lightMagenta: '#7d69d2', 17 | cyan: '#c9acca', 18 | lightCyan: '#d56fa9', 19 | white: '#807dc3', 20 | lightWhite: '#3a3690' 21 | }; 22 | 23 | exports.decorateConfig = config => { 24 | return Object.assign({}, config, { 25 | foregroundColor, 26 | backgroundColor, 27 | cursorColor, 28 | colors 29 | }) 30 | }; 31 | 32 | --------------------------------------------------------------------------------