Skip to content

Commit

Permalink
remove unnecessary changes for Ghostty
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Befan authored and Jorge Befan committed Jan 7, 2025
1 parent d43d712 commit 7e39748
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lua/nordic/colors/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function C.build_palette()
-- Some of the format is from @folke/tokyonight.nvim.

-- Backgrounds
C.bg = (options.transparent.bg and C.none) or ((options.swap_backgrounds and C.black1) or C.black2)
C.bg = (options.transparent.bg and C.none) or ((options.swap_backgrounds and C.black1) or C.gray0)
C.bg_dark = (options.transparent.bg and C.none) or C.black0
C.bg_sidebar = (options.transparent.bg and C.none) or C.bg
C.bg_statusline = C.black0
Expand Down
7 changes: 3 additions & 4 deletions lua/nordic/colors/nordic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,19 @@
-- This file has a bunch of added colors.

-- NOTE: All hex codes must be uppercase (for testing)

---@class NordicColors
local palette = {

none = 'NONE',

-- Blacks. Not in base Nord.
black0 = '#191D24',
black1 = '#1E222A',
black2 = '#222630', -- bg
-- Slightly darker than bg. Very useful for certain popups
black2 = '#222630',

-- Grays
-- This color is used on their website's dark theme.
gray0 = '#242933',
gray0 = '#242933', --bg
-- Polar Night.
gray1 = '#2E3440',
gray2 = '#3B4252',
Expand Down

0 comments on commit 7e39748

Please sign in to comment.