diff --git a/lua/catppuccino/color_schemes/catppuccino.lua b/lua/catppuccino/color_schemes/catppuccino.lua index 77fc8a3..7705cb6 100644 --- a/lua/catppuccino/color_schemes/catppuccino.lua +++ b/lua/catppuccino/color_schemes/catppuccino.lua @@ -1,38 +1,38 @@ local util = require("catppuccino.utils.util") local colors = { - none = "NONE", - bg = "#0e171c", -- nvim bg - fg = "#abb2bf", -- fg color (text) - fg_gutter = "#3b4261", - black = "#393b44", - gray = "#2a2e36", - red = "#c94f6d", - green = "#97c374", - yellow = "#dbc074", - blue = "#61afef", - magenta = "#c678dd", - cyan = "#63cdcf", - white = "#dfdfe0", - orange = "#F4A261", - pink = "#D67AD2", - black_br = "#7f8c98", - red_br = "#e06c75", - green_br = "#58cd8b", - yellow_br = "#FFE37E", - blue_br = "#84CEE4", - magenta_br = "#B8A1E3", - cyan_br = "#59F0FF", - white_br = "#FDEBC3", - orange_br = "#F6A878", - pink_br = "#DF97DB", - comment = "#526175", - git = { - add = "#dfdfe0", - change = "#F6A878", - delete = "#e06c75", - conflict = "#FFE37E" - }, + none = "NONE", + bg = "#0e171c", -- nvim bg + fg = "#abb2bf", -- fg color (text) + fg_gutter = "#3b4261", + black = "#393b44", + gray = "#2a2e36", + red = "#c94f6d", + green = "#97c374", + yellow = "#dbc074", + blue = "#61afef", + magenta = "#c678dd", + cyan = "#63cdcf", + white = "#dfdfe0", + orange = "#F4A261", + pink = "#D67AD2", + black_br = "#7f8c98", + red_br = "#e06c75", + green_br = "#58cd8b", + yellow_br = "#FFE37E", + blue_br = "#84CEE4", + magenta_br = "#B8A1E3", + cyan_br = "#59F0FF", + white_br = "#FDEBC3", + orange_br = "#F6A878", + pink_br = "#DF97DB", + comment = "#526175", + git = { + add = "#dfdfe0", + change = "#F6A878", + delete = "#e06c75", + conflict = "#FFE37E", + }, } util.bg = colors.bg @@ -41,10 +41,10 @@ colors.bg_highlight = util.brighten(colors.bg, 0.05) colors.fg_alt = util.darken(colors.fg, 0.80, "#000000") colors.diff = { -- also used for gitsigns - add = util.darken(colors.blue, 0.50), - delete = util.darken(colors.red, 0.50), - change = util.darken(colors.yellow, 0.50), - text = colors.blue + add = util.darken(colors.blue, 0.50), + delete = util.darken(colors.red, 0.50), + change = util.darken(colors.yellow, 0.50), + text = colors.blue, } colors.git.ignore = colors.black diff --git a/lua/catppuccino/color_schemes/light_melya.lua b/lua/catppuccino/color_schemes/light_melya.lua index e4ebf8c..2c42ac7 100644 --- a/lua/catppuccino/color_schemes/light_melya.lua +++ b/lua/catppuccino/color_schemes/light_melya.lua @@ -1,38 +1,38 @@ local util = require("catppuccino.utils.util") local colors = { - none = "NONE", - bg = "#fbfbfb", -- nvim bg - fg = "#0E171C", -- fg color (text) - fg_gutter = "#3b4261", - black = "#393b44", - gray = "#2a2e36", - red = "#B0304E", - green = "#76AB49", - yellow = "#FFCE1F", - blue = "#157C8E", - magenta = "#A414CC", - cyan = "#63cdcf", - white = "#dfdfe0", - orange = "#A414CC", - pink = "#D67AD2", - black_br = "#7f8c98", - red_br = "#D84652", - green_br = "#58cd8b", - yellow_br = "#FFE37E", - blue_br = "#84CEE4", - magenta_br = "#B8A1E3", - cyan_br = "#59F0FF", - white_br = "#0E171C", - orange_br = "#F3843F", - pink_br = "#DF97DB", - comment = "#526175", - git = { - add = "#dfdfe0", - change = "#F4843E", - delete = "#e06c75", - conflict = "#FFE070", - } + none = "NONE", + bg = "#fbfbfb", -- nvim bg + fg = "#0E171C", -- fg color (text) + fg_gutter = "#3b4261", + black = "#393b44", + gray = "#2a2e36", + red = "#B0304E", + green = "#76AB49", + yellow = "#FFCE1F", + blue = "#157C8E", + magenta = "#A414CC", + cyan = "#63cdcf", + white = "#dfdfe0", + orange = "#A414CC", + pink = "#D67AD2", + black_br = "#7f8c98", + red_br = "#D84652", + green_br = "#58cd8b", + yellow_br = "#FFE37E", + blue_br = "#84CEE4", + magenta_br = "#B8A1E3", + cyan_br = "#59F0FF", + white_br = "#0E171C", + orange_br = "#F3843F", + pink_br = "#DF97DB", + comment = "#526175", + git = { + add = "#dfdfe0", + change = "#F4843E", + delete = "#e06c75", + conflict = "#FFE070", + }, } util.bg = colors.bg @@ -41,11 +41,11 @@ colors.bg_highlight = util.darken(colors.bg, 0.85, "#000000") colors.fg_alt = util.darken(colors.fg, 0.80, "#000000") colors.diff = { - -- also used for gitsigns - add = util.darken(colors.blue, 0.50), - delete = util.darken(colors.red, 0.50), - change = util.darken(colors.yellow, 0.50), - text = colors.blue + -- also used for gitsigns + add = util.darken(colors.blue, 0.50), + delete = util.darken(colors.red, 0.50), + change = util.darken(colors.yellow, 0.50), + text = colors.blue, } colors.git.ignore = colors.black diff --git a/lua/catppuccino/color_schemes/neon_latte.lua b/lua/catppuccino/color_schemes/neon_latte.lua index bb15731..306d1ab 100644 --- a/lua/catppuccino/color_schemes/neon_latte.lua +++ b/lua/catppuccino/color_schemes/neon_latte.lua @@ -1,38 +1,38 @@ local util = require("catppuccino.utils.util") local colors = { - none = "NONE", - bg = "#150b26", -- nvim bg - fg = "#FDEBC3", -- fg color (text) - fg_gutter = "#3b4261", - black = "#393b44", - gray = "#2a2e36", - red = "#CF4F6D", - green = "#51ee72", - yellow = "#FFE070", - blue = "#96e2f0", - magenta = "#d97bf2", - cyan = "#63cdcf", - white = "#dfdfe0", - orange = "#EDC580", - pink = "#D67AD2", - black_br = "#7f8c98", - red_br = "#e06c75", - green_br = "#58cd8b", - yellow_br = "#FFE37E", - blue_br = "#84CEE4", - magenta_br = "#B8A1E3", - cyan_br = "#59F0FF", - white_br = "#FDEBC3", - orange_br = "#F6A878", - pink_br = "#DF97DB", - comment = "#526175", - git = { - add = "#dfdfe0", - change = "#F8B58C", - delete = "#e06c75", - conflict = "#FFE070" - }, + none = "NONE", + bg = "#150b26", -- nvim bg + fg = "#FDEBC3", -- fg color (text) + fg_gutter = "#3b4261", + black = "#393b44", + gray = "#2a2e36", + red = "#CF4F6D", + green = "#51ee72", + yellow = "#FFE070", + blue = "#96e2f0", + magenta = "#d97bf2", + cyan = "#63cdcf", + white = "#dfdfe0", + orange = "#EDC580", + pink = "#D67AD2", + black_br = "#7f8c98", + red_br = "#e06c75", + green_br = "#58cd8b", + yellow_br = "#FFE37E", + blue_br = "#84CEE4", + magenta_br = "#B8A1E3", + cyan_br = "#59F0FF", + white_br = "#FDEBC3", + orange_br = "#F6A878", + pink_br = "#DF97DB", + comment = "#526175", + git = { + add = "#dfdfe0", + change = "#F8B58C", + delete = "#e06c75", + conflict = "#FFE070", + }, } util.bg = colors.bg @@ -41,10 +41,10 @@ colors.bg_highlight = util.brighten(colors.bg, 0.05) colors.fg_alt = util.darken(colors.fg, 0.80, "#000000") colors.diff = { -- also used for gitsigns - add = util.darken(colors.blue, 0.50), - delete = util.darken(colors.red, 0.50), - change = util.darken(colors.yellow, 0.50), - text = colors.blue + add = util.darken(colors.blue, 0.50), + delete = util.darken(colors.red, 0.50), + change = util.darken(colors.yellow, 0.50), + text = colors.blue, } colors.git.ignore = colors.black