├── LICENSE ├── README.md ├── screenshot.png └── spacecamp.conf /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Sebastian Kolind Sørensen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![SpaceCamp logo](https://github.com/jaredgorski/SpaceCamp/raw/master/.media/spacecamp_header_lt.svg?sanitize=true) 2 | 3 |
4 |

5 | SpaceCamp is an attractive, comfortable, and legible colorscheme for Vim. This is the port for Kitty terminal. 6 |

7 |
8 | 9 | ![Theme Swatch](https://github.com/jaredgorski/SpaceCamp/raw/master/.media/spacecamp_colors.png) 10 | 11 |
12 |

13 | Flight Instructions 14 |

15 |
16 | 17 | 1. Clone this repo 18 | 2. Copy the `spacecamp.conf` file to a preferred location 19 | 3. Add an include to your `kitty.conf` file, like this: 20 | 21 | ``` 22 | include ./path/to/theme/spacecamp.conf 23 | ``` 24 | 25 | ### Screenshot 26 | 27 | ![Kitty terminal - SpaceCamp screenshot](./screenshot.png) 28 | 29 | ### Colors 30 | 31 | ``` 32 | background #121212 33 | foreground #d0d0d0 34 | selection_background #d0d0d0 35 | selection_foreground #121212 36 | url_color #91aadf 37 | cursor #d0d0d0 38 | active_border_color #666666 39 | inactive_border_color #d8fa3b 40 | active_tab_background #282828 41 | active_tab_foreground #dedede 42 | inactive_tab_background #dedede 43 | inactive_tab_foreground #282828 44 | 45 | # normal 46 | color0 #282828 47 | color1 #d71a1a 48 | color2 #57ba37 49 | color3 #f0d50c 50 | color4 #91aadf 51 | color5 #cf73e6 52 | color6 #b7cbf4 53 | color7 #dedede 54 | 55 | # bright 56 | color8 #666666 57 | color9 #ff0000 58 | color10 #d8fa3b 59 | color11 #e7c547 60 | color12 #b7cbf4 61 | color13 #b77ee0 62 | color14 #a9c1de 63 | color15 #eeeeee 64 | ``` 65 | 66 | ### Credits 67 | 68 | Credit on colors and readme.md file layout to [Jared Gorski's SpaceCamp vim colors](https://github.com/jaredgorski/SpaceCamp). 69 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebkolind/spacecamp-kitty/c06cc6f56076fb04aee04bc466c7733e6234b652/screenshot.png -------------------------------------------------------------------------------- /spacecamp.conf: -------------------------------------------------------------------------------- 1 | # SpaceCamp theme for Kitty 2 | # Credits to https://github.com/jaredgorski/SpaceCamp 3 | 4 | background #121212 5 | foreground #d0d0d0 6 | selection_background #d0d0d0 7 | selection_foreground #121212 8 | url_color #91aadf 9 | cursor #d0d0d0 10 | active_border_color #666666 11 | inactive_border_color #d8fa3b 12 | active_tab_background #282828 13 | active_tab_foreground #dedede 14 | inactive_tab_background #dedede 15 | inactive_tab_foreground #282828 16 | 17 | # normal 18 | color0 #282828 19 | color1 #d71a1a 20 | color2 #57ba37 21 | color3 #f0d50c 22 | color4 #91aadf 23 | color5 #cf73e6 24 | color6 #b7cbf4 25 | color7 #dedede 26 | 27 | # bright 28 | color8 #666666 29 | color9 #ff0000 30 | color10 #d8fa3b 31 | color11 #e7c547 32 | color12 #b7cbf4 33 | color13 #b77ee0 34 | color14 #a9c1de 35 | color15 #eeeeee 36 | --------------------------------------------------------------------------------