├── .editorconfig ├── .github └── CODEOWNERS ├── INSTALL.md ├── LICENSE.md ├── README.md ├── omni.xpi ├── omni.zip └── screenshot.png /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Learn how to add code owners here: 2 | # https://help.github.com/en/articles/about-code-owners 3 | 4 | * @birobirobiro 5 | * @EduardoJM 6 | .github/* @jpedroschmitz 7 | *.md @jpedroschmitz 8 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | ### [Firefox](https://www.mozilla.org/firefox/) 2 | 3 | #### Install using Firefox Add-ons 4 | 5 | Install the theme directly from [Firefox Add-ons](https://addons.mozilla.org/en-US/firefox/addon/omni-theme/). 6 | 7 | #### Install Manually 8 | 9 | - Download [.xpi file](https://github.com/getomni/firefox/raw/main/omni.xpi) or [.zip file](https://github.com/getomni/firefox/raw/main/omni.zip); 10 | - In adressbar paste this `about:addons`; 11 | - Go to Themes -> Settings -> Install Add-on from file; 12 | - Select **.xpi** or **.zip** file; 13 | - Apply **Omni** Theme. 14 | 15 | ### [Thunderbird] 16 | 17 | #### Install Manually 18 | 19 | - Download [.xpi file](https://github.com/getomni/firefox/raw/main/omni.xpi) or [.zip file](https://github.com/getomni/firefox/raw/main/omni.zip); 20 | - In the Thunderbird, go to Menu -> Add-ons -> Themes; 21 | - Go To Settings -> Install Add-on from file; 22 | - Select **.xpi** or **.zip** file; 23 | - Apply **Omni** Theme. 24 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Omni 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 |
3 | Omni Logo 4 |
5 | Omni for Firefox and Thunderbird 6 |
7 |

8 | 9 |

10 | Dark theme for Firefox and Thunderbird 11 |

12 | 13 |

14 | PRs welcome! 15 | 16 | License 17 |

18 | 19 |

20 | Install • 21 | Team • 22 | License 23 |

24 | 25 |

26 | Omni screnshoot for Firefox 27 |

28 | 29 | ## Install 30 | 31 | All instructions can be found at [INSTALL.md](./INSTALL.md). 32 | 33 | ## Team 34 | 35 | This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/getomni/firefox/graphs/contributors). 36 | 37 | | [![João Inácio](https://github.com/birobirobiro.png?size=100)](https://github.com/birobirobiro) | [![Eduardo Oliveira](https://github.com/EduardoJM.png?size=100)](https://github.com/EduardoJM) | 38 | | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | 39 | | [João Inácio](https://github.com/birobirobiro) | [Eduardo Oliveira](https://github.com/EduardoJM) | 40 | 41 | ## License 42 | 43 | [MIT License](./LICENSE.md) 44 | -------------------------------------------------------------------------------- /omni.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/firefox/2f2a3dcee6f33bc2e891d23823ba75506a67f040/omni.xpi -------------------------------------------------------------------------------- /omni.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/firefox/2f2a3dcee6f33bc2e891d23823ba75506a67f040/omni.zip -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/firefox/2f2a3dcee6f33bc2e891d23823ba75506a67f040/screenshot.png --------------------------------------------------------------------------------