diff --git a/README.md b/README.md
index 2e2c491..c7aaad8 100644
--- a/README.md
+++ b/README.md
@@ -9,11 +9,24 @@
-![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)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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! 🌍
diff --git a/colors/nekonight-space.lua b/colors/nekonight-space.lua
new file mode 100644
index 0000000..bc0a3b2
--- /dev/null
+++ b/colors/nekonight-space.lua
@@ -0,0 +1 @@
+require("nekonight").load({ style = "space" })
diff --git a/lua/nekonight/colors/space.lua b/lua/nekonight/colors/space.lua
new file mode 100644
index 0000000..73f5816
--- /dev/null
+++ b/lua/nekonight/colors/space.lua
@@ -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",
+ },
+})
+