Skip to content

Commit

Permalink
πŸ“ Updating readme format
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoCiccarino committed Dec 31, 2024
1 parent d94b210 commit 5f5ac27
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 5 deletions.
23 changes: 18 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,24 @@
<br>
</h1>

![lua](https://img.shields.io/badge/made_with-lua-code?style=for-the-badge&logo=lua&color=%23789DBC)
![GitHub last commit](https://img.shields.io/github/last-commit/BrunoCiccarino/nekonight?style=for-the-badge&logo=lua&color=%238BCDCD)
![GitHub forks](https://img.shields.io/github/forks/BrunoCiccarino/nekonight?style=for-the-badge&logo=lua&color=%23a3be8c)
![GitHub Repo stars](https://img.shields.io/github/stars/BrunoCiccarino/nekonight?style=for-the-badge&logo=lua&color=%23624E88)
![Neovim](https://img.shields.io/badge/NeoVim-%2357A143.svg?&style=for-the-badge&logo=neovim&logoColor=white)
<p align="center">
<a href="https://github.com/BrunoCiccarino/nekonight">
<img src="https://img.shields.io/badge/made_with-lua-code?style=for-the-badge&logo=lua&color=%23789DBC">
</a>
<a href="https://github.com/BrunoCiccarino/nekonight">
<img src="https://img.shields.io/github/forks/BrunoCiccarino/nekonight?style=for-the-badge&logo=lua&color=%23a3be8c">
</a>
<a href="https://github.com/BrunoCiccarino/nekonight">
<img src="https://img.shields.io/github/last-commit/BrunoCiccarino/nekonight?style=for-the-badge&logo=lua&color=%238BCDCD">
</a>
<a href="https://github.com/BrunoCiccarino/nekonight">
<img src="https://img.shields.io/github/stars/BrunoCiccarino/nekonight?style=for-the-badge&logo=lua&color=%23624E88">
</a>
<a href="https://github.com/BrunoCiccarino/nekonight">
<img src="https://img.shields.io/badge/NeoVim-%2357A143.svg?&style=for-the-badge&logo=neovim&logoColor=white">
</a>

</p>

Looking for a theme that fits your vibe? Whether you're into dark mode, light mode, or something in between, this **NekoNight** has got you covered. Written in [Lua](https://www.lua.org) for snappy performance, it's a buffet of color schemes for every taste and mood. 🍭 Want to boost your productivity *and* look good while coding? We've got countless options to keep you inspired and in the zone. πŸš€βœ¨ If you love it (and we know you will), hit that ⭐ on our [official repo](https://github.com/BrunoCiccarino/nekonight). Your support means the world! 🌍

Expand Down
1 change: 1 addition & 0 deletions colors/nekonight-space.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require("nekonight").load({ style = "space" })
47 changes: 47 additions & 0 deletions lua/nekonight/colors/space.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
local ret = vim.deepcopy(require("nekonight.colors.storm"))

---@type Palette
return vim.tbl_deep_extend("force", ret, {
bg = "#1B2240",
bg_dark = "#060F2F",
bg_dark1 = "#292f4d",
bg_float = "#1f2335",
bg_popup = "#1f2335",
bg_search = "#3d59a1",
bg_sidebar = "#1f2335",
bg_statusline = "#1f2335",
bg_visual = "#282c34",
blue = "#34d3fb",
blue0 = "#3d59a1",
blue1 = "#2ac3de",
blue2 = "#0db9d7",
blue5 = "#89ddff",
blue6 = "#b4f9f8",
blue7 = "#394b70",
comment = "#7e8eda",
cyan = "#7dcfff",
dark3 = "#545c7e",
dark5 = "#737aa2",
fg = "#c0caf5",
fg_gruvbox ="#f9f5d7",
fg_dark = "#a9b1d6",
fg_gutter = "#6272a4",
green = "#72f1b8",
green1 = "#73daca",
green2 = "#4894c8",
magenta = "#bb9af7",
magenta2 = "#ff007c",
orange = "#f97e72",
purple = "#ff7edb",
red = "#fe4450",
red1 = "#db4b4b",
teal = "#1abc9c",
terminal_black = "#414868",
yellow = "#fede5d",
git = {
add = "#449dab",
change = "#6183bb",
delete = "#914c54",
},
})

0 comments on commit 5f5ac27

Please sign in to comment.