├── requirements.txt ├── assets ├── colorbars.png └── neofetch.png ├── .gitmodules ├── gen.py ├── LICENSE ├── oxocarbon-dark.toml ├── templates └── oxocarbon-dark.toml.j2 └── README.md /requirements.txt: -------------------------------------------------------------------------------- 1 | Jinja2==3.1.2 2 | MarkupSafe==2.1.1 3 | PyYAML==6.0 4 | -------------------------------------------------------------------------------- /assets/colorbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyoom-engineering/oxocarbon-wezterm/HEAD/assets/colorbars.png -------------------------------------------------------------------------------- /assets/neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyoom-engineering/oxocarbon-wezterm/HEAD/assets/neofetch.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "palette"] 2 | path = palette 3 | url = https://github.com/nyoom-engineering/base16-oxocarbon.git 4 | -------------------------------------------------------------------------------- /gen.py: -------------------------------------------------------------------------------- 1 | import yaml 2 | import jinja2 3 | 4 | 5 | def read_theme(name: str): 6 | theme = {} 7 | 8 | with open(f"palette/base16-oxocarbon-{name}.yaml", "r") as f: 9 | theme = yaml.safe_load(f) 10 | f.close() 11 | 12 | return theme 13 | 14 | 15 | def main(): 16 | env = jinja2.Environment(loader=jinja2.FileSystemLoader("./templates/")) 17 | tmp = env.get_template("oxocarbon-dark.toml.j2") 18 | thm = read_theme('dark') 19 | 20 | con = tmp.render(thm) 21 | 22 | open('oxocarbon-dark.toml', 'w').close() 23 | 24 | with open('oxocarbon-dark.toml', 'w') as f: 25 | f.write(con) 26 | f.close() 27 | 28 | 29 | main() 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Catppuccin 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 | -------------------------------------------------------------------------------- /oxocarbon-dark.toml: -------------------------------------------------------------------------------- 1 | [colors] 2 | background = '#161616' 3 | foreground = '#ffffff' 4 | cursor_bg = '#ffffff' 5 | cursor_border = '#ffffff' 6 | cursor_fg = '#161616' 7 | 8 | ansi = [ 9 | '#262626', 10 | '#ee5396', 11 | '#42be65', 12 | '#ffe97b', 13 | '#33b1ff', 14 | '#ff7eb6', 15 | '#3ddbd9', 16 | '#dde1e6', 17 | ] 18 | brights = [ 19 | '#393939', 20 | '#ee5396', 21 | '#42be65', 22 | '#ffe97b', 23 | '#33b1ff', 24 | '#ff7eb6', 25 | '#3ddbd9', 26 | '#ffffff', 27 | ] 28 | 29 | [colors.tab_bar] 30 | background = "#262626" 31 | 32 | [colors.tab_bar.active_tab] 33 | bg_color = '#161616' 34 | fg_color = '#ffffff' 35 | intensity = 'Normal' 36 | italic = false 37 | strikethrough = false 38 | underline = 'None' 39 | 40 | [colors.tab_bar.inactive_tab] 41 | bg_color = '#262626' 42 | fg_color = '#ffffff' 43 | intensity = 'Normal' 44 | italic = false 45 | strikethrough = false 46 | underline = 'None' 47 | 48 | [colors.tab_bar.new_tab] 49 | bg_color = '#262626' 50 | fg_color = '#ffffff' 51 | intensity = 'Normal' 52 | italic = false 53 | strikethrough = false 54 | underline = 'None' 55 | 56 | 57 | [metadata] 58 | name = 'Oxocarbon Dark' 59 | origin_url = 'https://github.com/nyoom-engineering/oxocarbon' -------------------------------------------------------------------------------- /templates/oxocarbon-dark.toml.j2: -------------------------------------------------------------------------------- 1 | [colors] 2 | background = '#{{ base00 }}' 3 | foreground = '#{{ base06 }}' 4 | cursor_bg = '#{{ base06 }}' 5 | cursor_border = '#{{ base06 }}' 6 | cursor_fg = '#{{ base00 }}' 7 | 8 | ansi = [ 9 | '#{{ base01 }}', 10 | '#{{ base0A }}', 11 | '#{{ base0D }}', 12 | '#ffe97b', 13 | '#{{ base0B }}', 14 | '#{{ base0C }}', 15 | '#{{ base08 }}', 16 | '#{{ base04 }}', 17 | ] 18 | brights = [ 19 | '#{{ base02 }}', 20 | '#{{ base0A }}', 21 | '#{{ base0D }}', 22 | '#ffe97b', 23 | '#{{ base0B }}', 24 | '#{{ base0C }}', 25 | '#{{ base08 }}', 26 | '#{{ base06 }}', 27 | ] 28 | 29 | [colors.tab_bar] 30 | background = "#{{ base01 }}" 31 | 32 | [colors.tab_bar.active_tab] 33 | bg_color = '#{{ base00 }}' 34 | fg_color = '#{{ base06 }}' 35 | intensity = 'Normal' 36 | italic = false 37 | strikethrough = false 38 | underline = 'None' 39 | 40 | [colors.tab_bar.inactive_tab] 41 | bg_color = '#{{ base01 }}' 42 | fg_color = '#{{ base06 }}' 43 | intensity = 'Normal' 44 | italic = false 45 | strikethrough = false 46 | underline = 'None' 47 | 48 | [colors.tab_bar.new_tab] 49 | bg_color = '#{{ base01 }}' 50 | fg_color = '#{{ base06 }}' 51 | intensity = 'Normal' 52 | italic = false 53 | strikethrough = false 54 | underline = 'None' 55 | 56 | 57 | [metadata] 58 | name = 'Oxocarbon Dark' 59 | origin_url = 'https://github.com/nyoom-engineering/oxocarbon' 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | # oxocarbon-wezterm 4 | 5 |
6 | 7 |
8 | 9 | [![Stars](https://img.shields.io/github/stars/nyoom-engineering/oxocarbon?color=%23b66467&style=for-the-badge)](https://github.com/nyoom-engineering/oxocarbon/stargazers) 10 | [![GitHub Issues](https://img.shields.io/github/issues/nyoom-engineering/oxocarbon?color=%238c977d&style=for-the-badge)](https://github.com/nyoom-engineering/oxocarbon/issues) 11 | [![License](https://img.shields.io/github/license/nyoom-engineering/oxocarbon?color=%238da3b9&style=for-the-badge)](https://mit-license.org/) 12 | ![Discord Server](https://img.shields.io/discord/1050624267592663050?color=738adb&label=Discord&Color=white&style=for-the-badge) 13 | 14 |
15 | 16 | Oxocarbon is a set of community ports of IBM's carbon color palette and design philosophy to various applications and tooling. 17 | 18 | ## Showcase 19 | 20 | ![neofetch](assets/neofetch.png) 21 | ![colorbars](assets/colorbars.png) 22 | 23 | ## Install 24 | 25 | 1. Run the following commands: 26 | 27 | ```bash 28 | mkdir -p $HOME/.config/wezterm/colors 29 | cd $HOME/.config/wezterm/colors/ 30 | curl -O https://raw.githubusercontent.com/nyoom-engineering/oxocarbon-wezterm/main/oxocarbon-dark.toml 31 | ``` 32 | 33 | 2. Set it up as your colorscheme in your `wezterm.lua` 34 | 35 | ```lua 36 | return { 37 | color_scheme = 'Oxocarbon Dark', 38 | use_fancy_tab_bar = false, 39 | } 40 | ``` 41 | 42 | 3. (optional) for a better experience consider enable this settings: 43 | 44 | ```lua 45 | return { 46 | window_decorations = "RESIZE", 47 | hide_tab_bar_if_only_one_tab = true, 48 | } 49 | ``` 50 | 51 | ## License 52 | 53 | The project is licensed under the MIT license 54 | --------------------------------------------------------------------------------