├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── preview.webp ├── dark-reader.tera ├── justfile └── renovate.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # EditorConfig is awesome: https://EditorConfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | charset = utf-8 9 | indent_size = 2 10 | indent_style = space 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | # go 16 | [*.go] 17 | indent_style = tab 18 | indent_size = 4 19 | 20 | # python 21 | [*.{ini,py,py.tpl,rst}] 22 | indent_size = 4 23 | 24 | # rust 25 | [*.rs] 26 | indent_size = 4 27 | 28 | # documentation, utils 29 | [*.{md,mdx,diff}] 30 | trim_trailing_whitespace = false 31 | 32 | # windows shell scripts 33 | [*.{cmd,bat,ps1}] 34 | end_of_line = crlf 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Logo
3 | 4 | Catppuccin for Dark Reader 5 | 6 |

7 | 8 |

9 | 10 | 11 | 12 |

13 | 14 |

15 | 16 |

17 | 18 | ## Previews 19 | 20 |
21 | 🌻 Latte 22 | 23 |
24 |
25 | 🪴 Frappé 26 | 27 |
28 |
29 | 🌺 Macchiato 30 | 31 |
32 |
33 | 🌿 Mocha 34 | 35 |
36 | 37 | ## Usage 38 | 39 | > [!IMPORTANT] 40 | > If you only want to use _Mocha_, Dark Reader includes **Catppuccin** by 41 | > default, which is Mocha. 42 | 43 | 1. Open the Dark Reader. 44 | 2. Click on **Dev Tools** > **Advance** > **Preview new design** and close the window. 45 | 3. Now click on **See all options** > **Colors**. 46 | 4. Open your desired flavor in the table below. Copy and paste values into respective fields. 47 | - You will have to change the "Selection" setting from `Automatic` to `Custom`. 48 | 49 | 50 |
51 | 🌻 Latte 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 |
SettingColor
Background#eff1f5
Text#4c4f69
Selection#acb0be
70 |
71 | 72 |
73 | 🪴 Frappé 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 |
SettingColor
Background#303446
Text#c6d0f5
Selection#626880
92 |
93 | 94 |
95 | 🌺 Macchiato 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 |
SettingColor
Background#24273a
Text#cad3f5
Selection#5b6078
114 |
115 | 116 |
117 | 🌿 Mocha 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 |
SettingColor
Background#1e1e2e
Text#cdd6f4
Selection#585b70
136 |
137 | 138 | 139 | 5. Done! There is no apply or save button. 140 | 141 | ## 💝 Thanks to 142 | 143 | - [Sanjay Pavan](https://github.com/WitherCubes) 144 | 145 |   146 | 147 |

148 |

Copyright © 2021-present Catppuccin Org 149 |

150 | -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dark-reader/098cf0c90aec85870c7fbdcfac4a315f4977fcb1/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dark-reader/098cf0c90aec85870c7fbdcfac4a315f4977fcb1/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dark-reader/098cf0c90aec85870c7fbdcfac4a315f4977fcb1/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dark-reader/098cf0c90aec85870c7fbdcfac4a315f4977fcb1/assets/mocha.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dark-reader/098cf0c90aec85870c7fbdcfac4a315f4977fcb1/assets/preview.webp -------------------------------------------------------------------------------- /dark-reader.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: 2.4.0 4 | filename: "README.md" 5 | --- 6 |

7 | Logo
8 | 9 | Catppuccin for Dark Reader 10 | 11 |

12 | 13 |

14 | 15 | 16 | 17 |

18 | 19 | 20 | ![DarkReader Theme Preview (Wikipedia)](assets/screenshot.png) 21 | 22 | 23 | ## Usage 24 | 25 | > [!IMPORTANT] 26 | > If you only want to use _Mocha_, Dark Reader includes **Catppuccin** by 27 | > default, which is Mocha. 28 | 29 | 1. Open the Dark Reader. 30 | 2. Click on **Dev Tools** > **Advance** > **Preview new design** and close the window. 31 | 3. Now click on **See all options** > **Colors**. 32 | 4. Open your desired flavor in the table below. Copy and paste values into respective fields. 33 | - You will have to change the "Selection" setting from `Automatic` to `Custom`. 34 | 35 | {% for id, flavor in flavors %} 36 |
37 | {{flavor.emoji}} {{flavor.name}} 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 |
SettingColor
Background#{{ flavor.colors.base.hex }}
Text#{{ flavor.colors.text.hex }}
Selection#{{ flavor.colors.surface2.hex }}
56 |
57 | {% endfor %} 58 | 59 | 5. Done! There is no apply or save button. 60 | 61 | ## 💝 Thanks to 62 | 63 | - [Sanjay Pavan](https://github.com/WitherCubes) 64 | 65 |   66 | 67 |

68 |

Copyright © 2021-present Catppuccin Org 69 |

70 | -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | _default: 2 | @just --list 3 | 4 | build: 5 | whiskers dark-reader.tera 6 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "local>catppuccin/renovate-config" 5 | ] 6 | } 7 | --------------------------------------------------------------------------------