From 9509b36d1ae510d1f6a187818c33ddaac1eda270 Mon Sep 17 00:00:00 2001 From: Frenzy Date: Sat, 28 Aug 2021 21:51:29 -0400 Subject: [PATCH] Fixed color values according the base-16 standards --- lua/themes/aquarium-base16.lua | 47 ++++++++++++---------------------- 1 file changed, 16 insertions(+), 31 deletions(-) diff --git a/lua/themes/aquarium-base16.lua b/lua/themes/aquarium-base16.lua index 17b7151..f288f71 100644 --- a/lua/themes/aquarium-base16.lua +++ b/lua/themes/aquarium-base16.lua @@ -1,35 +1,20 @@ local colors = { - white = "#63718b", - darker_black = "#10171e", - black = "#20202A", -- nvim bg - black2 = "#1d2021", - one_bg = "#20202A", - one_bg2 = "#2c2e3e", - one_bg3 = "#3D4059", - grey = "#4e5c70", - grey_fg = "#c8cedc", - grey_fg2 = "#63718b", - light_grey = "#A6AFC1", - red = "#ebb9b9", - baby_pink = "#EAC1C1", - pink = "#E9D1D1", - line = "#313449", -- for lines like vertsplit - green = "#b1dba4", - vibrant_green = "#BEE0A8", - blue = "#CDDBF9", - nord_blue = "#BCCAEB", - yellow = "#E6DFB8", - sun = "#EEE8BA", - purple = "#f6bbe7", - dark_purple = "#E8B6E9", - teal = "#AEDCB7", - orange = "#E8CCA7", - cyan = "#b8dceb", - statusline_bg = "#2c2e3e", - lightbg = "#222930", - lightbg2 = "#1d242b", - pmenu_bg = "#63718b", - folder_bg = "#b8dceb", + base00 = "20202A", -- Default Background + base01 = "2c2e3e", -- Lighter Background (Used for status bars, line number and folding marks) + base02 = "3D4059", -- Selection Background + base03 = "313449", -- Comments, Invisibles, Line Highlighting + base04 = "63718b", -- Dark Foreground (Used for status bars) + base05 = "ced4df", -- Default Foreground, Caret, Delimiters, Operators + base06 = "414560", -- Light Foreground (Not often used) + base07 = "63718b", -- Light Background (Not often used) + base08 = "ebb9b9", -- Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted (red) + base09 = "e8cca7", -- Integers, Boolean, Constants, XML Attributes, Markup Link Url (orange) + base0A = "e6dfb8", -- Classes, Markup Bold, Search Text Background (yellow) + base0B = "b1dba4", -- Strings, Inherited Class, Markup Code, Diff Inserted (green) + base0C = "b8dceb", -- Support, Regular Expressions, Escape Characters, Markup Quotes (cyan) + base0D = "a3b8ef", -- Functions, Methods, Attribute IDs, Headings (blue) + base0E = "f6bbe7", -- Keywords, Storage, Selector, Markup Italic, Diff Changed (magenta) + base0F = "eAc1c1", -- Deprecated, Opening/Closing Embedded Language Tags, e.g. `` (pink) } return colors