├── screenshot.png ├── embark.toml ├── embark.yml ├── README.md └── LICENSE /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embark-theme/alacritty/HEAD/screenshot.png -------------------------------------------------------------------------------- /embark.toml: -------------------------------------------------------------------------------- 1 | [colors.bright] 2 | black = "#585273" 3 | blue = "#78a8ff" 4 | cyan = "#63f2f1" 5 | green = "#7fe9c3" 6 | magenta = "#7676ff" 7 | red = "#f02e6e" 8 | white = "#8a889d" 9 | yellow = "#f2b482" 10 | 11 | [colors.cursor] 12 | cursor = "#a1efd3" 13 | text = "#1e1c31" 14 | 15 | [colors.normal] 16 | black = "#1e1c31" 17 | blue = "#91ddff" 18 | cyan = "#abf8f7" 19 | green = "#a1efd3" 20 | magenta = "#d4bfff" 21 | red = "#f48fb1" 22 | white = "#cbe3e7" 23 | yellow = "#ffe6b3" 24 | 25 | [colors.primary] 26 | background = "#1e1c31" 27 | foreground = "#cbe3e7" 28 | -------------------------------------------------------------------------------- /embark.yml: -------------------------------------------------------------------------------- 1 | schemes: 2 | embark: &embark 3 | primary: 4 | background: '0x1e1c31' 5 | foreground: '0xcbe3e7' 6 | cursor: 7 | text: '0x1e1c31' 8 | cursor: '0xa1efd3' 9 | normal: 10 | black: '0x1e1c31' 11 | red: '0xf48fb1' 12 | green: '0xa1efd3' 13 | yellow: '0xffe6b3' 14 | blue: '0x91ddff' 15 | magenta: '0xd4bfff' 16 | cyan: '0xabf8f7' 17 | white: '0xcbe3e7' 18 | bright: 19 | black: '0x585273' 20 | red: '0xf02e6e' 21 | green: '0x7fe9c3' 22 | yellow: '0xf2b482' 23 | blue: '0x78a8ff' 24 | magenta: '0x7676ff' 25 | cyan: '0x63f2f1' 26 | white: '0x8a889d' 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # alacritty 2 | An ambitious theme for alacritty 3 | 4 | ![Screenshot](./screenshot.png) 5 | 6 | ## How to use 7 | 8 | Edit alacritty configuration file (usually located at `$XDG_CONFIG_HOME/alacritty/alacritty.yml`) and import embark to your config. 9 | If you placed `embark.yml` into `$XDG/alacritty/alacritty/themes/embark.yml` then 10 | the import would look like the following: 11 | 12 | ``` 13 | import: 14 | - ~/.config/alacritty/themes/embark.yml 15 | ``` 16 | 17 | ### For Version: 0.13.0 or later use TOML instead of YML 18 | ``` 19 | import = [ 20 | "~/.config/alacritty/themes/embark.toml" 21 | ] 22 | ``` 23 | 24 | > See [this](https://github.com/alacritty/alacritty-theme) repo for similar theme 25 | > handling. 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 embark-theme 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 | --------------------------------------------------------------------------------