├── README.md ├── base16-oxocarbon-dark.yaml └── base16-oxocarbon-light.yaml /README.md: -------------------------------------------------------------------------------- 1 | # Base16 Oxocarbon 2 | 3 | Base16 versions of the dark and light themes from oxocarbon.nvim. Insipired by IBM's carbon design 4 | 5 | Screenshot 2022-12-09 at 9 26 05 PM 6 | 7 | ## Usage 8 | 9 | Both of these themes follow the [base16](https://github.com/chriskempson/base16) format. You can either opt to manually use the provided hex codes, or use a [template](https://github.com/chriskempson/base16-templates-source). These colors can also be used as a base for ports to editors and tooling. 10 | 11 | If you have an idea for a port, please let us know on discord! 12 | -------------------------------------------------------------------------------- /base16-oxocarbon-dark.yaml: -------------------------------------------------------------------------------- 1 | scheme: "Oxocarbon Dark" 2 | author: "shaunsingh/IBM" 3 | base00: "161616" 4 | base01: "262626" 5 | base02: "393939" 6 | base03: "525252" 7 | base04: "dde1e6" 8 | base05: "f2f4f8" 9 | base06: "ffffff" 10 | base07: "08bdba" 11 | base08: "3ddbd9" 12 | base09: "78a9ff" 13 | base0A: "ee5396" 14 | base0B: "33b1ff" 15 | base0C: "ff7eb6" 16 | base0D: "42be65" 17 | base0E: "be95ff" 18 | base0F: "82cfff" 19 | -------------------------------------------------------------------------------- /base16-oxocarbon-light.yaml: -------------------------------------------------------------------------------- 1 | scheme: "Oxocarbon Light" 2 | author: "shaunsingh/IBM" 3 | base00: "f2f4f8" 4 | base01: "dde1e6" 5 | base02: "525252" 6 | base03: "161616" 7 | base04: "262626" 8 | base05: "393939" 9 | base06: "525252" 10 | base07: "08bdba" 11 | base08: "ff7eb6" 12 | base09: "ee5396" 13 | base0A: "FF6F00" 14 | base0B: "0f62fe" 15 | base0C: "673AB7" 16 | base0D: "42be65" 17 | base0E: "be95ff" 18 | base0F: "37474F" 19 | --------------------------------------------------------------------------------