first commit

This commit is contained in:
leo 2022-04-11 17:59:42 -03:00
commit 868d44f463
5 changed files with 106 additions and 0 deletions

20
.editorconfig Normal file
View File

@ -0,0 +1,20 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# EditorConfig is awesome: https://EditorConfig.org
root = true
[*]
end_of_line = lf
charset = utf-8
insert_final_newline = true
indent_style = tabs
indent_size = 4
[*.txt]
indent_style = tab
indent_size = 4
[*.{diff,md}]
trim_trailing_whitespace = false

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2021 Catppuccin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

36
README.md Normal file
View File

@ -0,0 +1,36 @@
<h3 align="center">
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/dev/assets/logos/exports/1544x1544_circle.png" width="100" alt="Logo"/><br/>
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/dev/assets/misc/transparent.png" height="30" width="0px"/>
Catppuccin for Tym
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/dev/assets/misc/transparent.png" height="30" width="0px"/>
</h3>
<p align="center">
<a href="https://github.com/catppuccin/tym/stargazers"><img src="https://img.shields.io/github/stars/catppuccin/tym?colorA=1e1e28&colorB=c9cbff&style=for-the-badge&logo=starship"></a>
<a href="https://github.com/catppuccin/tym/issues"><img src="https://img.shields.io/github/issues/catppuccin/tym?colorA=1e1e28&colorB=f7be95&style=for-the-badge"></a>
<a href="https://github.com/catppuccin/tym/contributors"><img src="https://img.shields.io/github/contributors/catppuccin/tym?colorA=1e1e28&colorB=b1e1a6&style=for-the-badge"></a>
</p>
<p align="center">
<img src="assets/showcase.png"/>
</p>
## Usage
1. Clone this repository
2. Enter the folder of clone
3. Move `theme.lua` to `.config/tym/`:
```
mv theme.lua ~/.config/tym
```
## 💝 Thanks to
- [justleoo](https://github.com/justleoo)
&nbsp;
<p align="center"><img src="https://raw.githubusercontent.com/catppuccin/catppuccin/dev/assets/footers/gray0_ctp_on_line.svg?sanitize=true" /></p>
<p align="center">Copyright &copy; 2021-present <a href="https://github.com/catppuccin" target="_blank">Catppuccin Org</a>
<p align="center"><a href="https://github.com/catppuccin/catppuccin/blob/main/LICENSE"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=MIT&logoColor=d9e0ee&colorA=302d41&colorB=c9cbff"/></a></p>

BIN
assets/showcase.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

29
theme.lua Normal file
View File

@ -0,0 +1,29 @@
local bg = '#1A1826'
local fg = '#D9E0EE'
return {
color_background = bg,
color_foreground = fg,
color_window_background = bg,
color_bold = fg,
color_cursor = '#5E81AC',
color_cursor_foreground = '#2E3440',
color_highlight = fg,
color_highlight_foreground = bg,
color_0 = '#6E6C7E',
color_1 = '#F28FAD',
color_2 = '#ABE9B3',
color_3 = '#FAE3B0',
color_4 = '#96CDFB',
color_5 = '#F5C2E7',
color_6 = '#89DCEB',
color_7 = '#D9E0EE',
color_8 = '#988BA2',
color_9 = '#F28FAD',
color_10 = '#ABE9B3',
color_11 = '#FAE3B0',
color_12 = '#96CDFB',
color_13 = '#DDB6F2',
color_14 = '#89DCEB',
color_15 = '#D9E0EE'
}