Skip to content

Commit b74b5f4

Browse files
A-Lamiamehalter
authored andcommitted
feat: swapped subtext0 and subtext1 around
1 parent ab46df6 commit b74b5f4

File tree

11 files changed

+27
-27
lines changed

11 files changed

+27
-27
lines changed

lua/astrotheme/groups/base.lua

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local function callback(opts)
88
lCursor = { link = "Cursor" },
99
ColorColumn = { fg = C.none, bg = C.overlay1 },
1010
CursorLineNr = { fg = C.text, bg = C.none },
11-
Conceal = { fg = C.subtext0, bg = C.none },
11+
Conceal = { fg = C.subtext1, bg = C.none },
1212
CursorColumn = { fg = C.none, bg = C.overlay1 },
1313
CursorLine = { fg = C.none, bg = C.surface0 },
1414
Directory = { fg = C.blue, bg = C.none },
@@ -26,12 +26,12 @@ local function callback(opts)
2626
DiffIndexLine = { fg = C.cyan },
2727
ErrorMsg = { fg = C.red, bg = C.none },
2828
WinSeparator = { fg = C.overlay1, bg = C.none },
29-
Folded = { fg = C.subtext0, bg = C.none },
29+
Folded = { fg = C.subtext1, bg = C.none },
3030
FoldColumn = { fg = C.none, bg = C.none },
3131
IncSearch = { fg = C.yellow, bg = C.subtext0 },
3232
CurSearch = { link = "IncSearch" },
33-
LineNr = { fg = C.subtext0, bg = C.none },
34-
NonText = { fg = C.subtext0, bg = C.none },
33+
LineNr = { fg = C.subtext1, bg = C.none },
34+
NonText = { fg = C.subtext1, bg = C.none },
3535
Pmenu = { fg = C.text, bg = C.mantle },
3636
PmenuSel = { fg = C.none, bg = C.overlay1 },
3737
PmenuSbar = { fg = C.none, bg = C.overlay2 },
@@ -40,13 +40,13 @@ local function callback(opts)
4040
QuickFixLine = { fg = C.overlay2, bg = C.yellow },
4141
Search = { fg = C.overlay2, bg = C.yellow },
4242
SignColumn = { fg = C.none, bg = C.none },
43-
SpecialKey = { fg = C.subtext0, bg = C.none },
43+
SpecialKey = { fg = C.subtext1, bg = C.none },
4444
SpellBad = { undercurl = true },
4545
SpellCap = { undercurl = true },
4646
SpellLocal = { undercurl = true },
4747
SpellRare = { undercurl = true },
4848
StatusLine = { fg = C.text, bg = C.status },
49-
StatusLineNC = { fg = C.subtext0, bg = C.none },
49+
StatusLineNC = { fg = C.subtext1, bg = C.none },
5050
StatusLineTerm = { fg = C.text, bg = C.overlay1 },
5151
StatusLineTermNC = { fg = C.crust, bg = C.none },
5252
StatusInactive = { fg = C.crust, bg = C.surface0 },
@@ -56,10 +56,10 @@ local function callback(opts)
5656
StatusReplace = { fg = C.crust, bg = C.alt_red },
5757
StatusCommand = { fg = C.crust, bg = C.alt_yellow },
5858
StatusTerminal = { link = "StatusInsert" },
59-
WinBar = { fg = C.subtext1, bg = C.base },
60-
WinBarNC = { fg = C.subtext0, bg = opts.inactive and C.crust or C.base },
61-
TabLine = { fg = C.subtext0, bg = C.none },
6259
TabLineSel = { fg = C.text, bg = C.none },
60+
WinBar = { fg = C.subtext0, bg = C.base },
61+
WinBarNC = { fg = C.subtext1, bg = opts.inactive and C.crust or C.base },
62+
TabLine = { fg = C.subtext1, bg = C.none },
6363
TabLineFill = { fg = C.none, bg = C.crust },
6464
Terminal = { fg = C.text, bg = C.overlay2 },
6565
Visual = { fg = C.none, bg = C.surface1 },

lua/astrotheme/groups/lsp.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ local function callback()
1010
DiagnosticUnderlineHint = { sp = C.red, undercurl = true },
1111
DiagnosticUnderlineInfo = { sp = C.red, undercurl = true },
1212
DiagnosticUnderlineWarn = { sp = C.red, undercurl = true },
13-
LspCodeLens = { fg = C.subtext1 },
14-
LspCodeLensSeparator = { fg = C.subtext1 },
13+
LspCodeLens = { fg = C.subtext0 },
14+
LspCodeLensSeparator = { fg = C.subtext0 },
1515
LspDiagnosticsFloatingError = { fg = C.alt_red },
1616
LspDiagnosticsFloatingHint = { fg = C.alt_yellow },
1717
LspDiagnosticsFloatingInfor = { fg = C.overlay0 },

lua/astrotheme/groups/plugins/aerial.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ local function callback()
1111
AerialFieldIcon = { link = "@field" },
1212
AerialFileIcon = { link = "@text.uri" },
1313
AerialFunctionIcon = { link = "@function" },
14-
AerialGuide = { fg = C.subtext0 },
14+
AerialGuide = { fg = C.subtext1 },
1515
AerialInterfaceIcon = { link = "@type" },
1616
AerialKeyIcon = { link = "@type" },
1717
AerialLine = { fg = C.yellow, bg = C.none },

lua/astrotheme/groups/plugins/gitsigns.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ local function callback()
44
GitSignsChange = { fg = C.alt_orange, bg = C.none },
55
GitSignsDelete = { fg = C.alt_red, bg = C.none },
66
MoreMsg = { fg = C.green, bold = true },
7-
ModeMsg = { fg = C.subtext0, bold = true },
7+
ModeMsg = { fg = C.subtext1, bold = true },
88
}
99
end
1010

lua/astrotheme/groups/plugins/hop.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local function callback()
33
HopNextKey = { fg = C.red, bold = true },
44
HopNextKey1 = { fg = C.cyan, bold = true },
55
HopNextKey2 = { fg = C.blue },
6-
HopUnmatched = { fg = C.subtext0 },
6+
HopUnmatched = { fg = C.subtext1 },
77
}
88
end
99

lua/astrotheme/groups/plugins/neo-tree.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ local function callback(opts)
2020
},
2121
NeoTreeSymbolicLinkTarget = { fg = C.cyan },
2222
NeoTreeTabActive = { fg = C.text, bg = C.mantle, bold = true },
23-
NeoTreeTabInactive = { fg = C.subtext0, bg = C.crust },
23+
NeoTreeTabInactive = { fg = C.subtext1, bg = C.crust },
2424
NeoTreeTabSeparatorActive = { fg = C.mantle, bg = C.mantle },
2525
NeoTreeTabSeparatorInactive = { fg = C.crust, bg = C.crust },
2626
NeoTreeVertSplit = { fg = C.base, bg = C.mantle },

lua/astrotheme/groups/plugins/nvim-dap-ui.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local function callback()
55
DapUIType = { link = "Type" },
66
DapUIValue = { fg = C.red },
77
DapUIModifiedValue = { fg = C.alt_yellow, bold = true },
8-
DapUIDecoration = { fg = C.subtext0 },
8+
DapUIDecoration = { fg = C.subtext1 },
99
DapUIThread = { link = "String" },
1010
DapUIStoppedThread = { link = "Title" },
1111
DapUIFrameName = { link = "Normal" },

lua/astrotheme/groups/plugins/nvim-notify.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ local function callback()
2121
NotifyINFOBody = { fg = C.text },
2222
NotifyDEBUGBody = { fg = C.text },
2323
NotifyTRACEBody = { fg = C.text },
24-
NotifyLogTime = { fg = C.subtext1 },
24+
NotifyLogTime = { fg = C.subtext0 },
2525
NotifyLogTitle = { fg = C.blue },
2626
}
2727
end

lua/astrotheme/groups/plugins/telescope.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local function callback(opts)
1717
TelescopeResultsNormal = { fg = C.text, bg = opts.floating and C.mantle or C.base },
1818
TelescopeBorder = { fg = C.text },
1919
TelescopeTitle = { fg = C.text },
20-
TelescopePromptCounter = { fg = C.subtext0 },
20+
TelescopePromptCounter = { fg = C.subtext1 },
2121
TelescopePromptPrefix = { fg = C.blue },
2222
TelescopePreviewLine = { bg = C.surface1 },
2323
TelescopePreviewMatch = { fg = C.yellow },
@@ -30,7 +30,7 @@ local function callback(opts)
3030
TelescopePreviewRead = { fg = C.yellow },
3131
TelescopePreviewWrite = { fg = C.purple },
3232
TelescopePreviewExecute = { fg = C.green },
33-
TelescopePreviewHyphen = { fg = C.subtext0 },
33+
TelescopePreviewHyphen = { fg = C.subtext1 },
3434
TelescopePreviewSticky = { fg = C.blue },
3535
TelescopePreviewSize = { fg = C.green },
3636
TelescopePreviewUser = { fg = C.yellow },
@@ -46,15 +46,15 @@ local function callback(opts)
4646
TelescopeResultsOperator = { fg = C.cyan },
4747
TelescopeResultsStruct = { fg = C.purple },
4848
TelescopeResultsVariable = { fg = C.red },
49-
TelescopeResultsLineNr = { fg = C.subtext0 },
49+
TelescopeResultsLineNr = { fg = C.subtext1 },
5050
TelescopeResultsIdentifier = { fg = C.blue },
5151
TelescopeResultsNumber = { fg = C.orange },
52-
TelescopeResultsComment = { fg = C.subtext1 },
53-
TelescopeResultsSpecialComment = { fg = C.subtext0 },
52+
TelescopeResultsComment = { fg = C.subtext0 },
53+
TelescopeResultsSpecialComment = { fg = C.subtext1 },
5454
TelescopeResultsDiffChange = { fg = C.none, bg = C.yellow },
5555
TelescopeResultsDiffAdd = { fg = C.none, bg = C.green },
5656
TelescopeResultsDiffDelete = { fg = C.none, bg = C.red },
57-
TelescopeResultsDiffUntracked = { fg = C.none, bg = C.subtext0 },
57+
TelescopeResultsDiffUntracked = { fg = C.none, bg = C.subtext1 },
5858
}
5959
end
6060

lua/astrotheme/groups/plugins/vimwiki.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
local function callback()
22
return {
33
VimwikiLink = { fg = C.cyan, bg = C.none },
4-
VimwikiHeaderChar = { fg = C.subtext0, bg = C.none },
4+
VimwikiHeaderChar = { fg = C.subtext1, bg = C.none },
55
VimwikiHR = { fg = C.yellow, bg = C.none },
66
VimwikiList = { fg = C.orange, bg = C.none },
77
VimwikiTag = { fg = C.orange, bg = C.none },
8-
VimwikiMarkers = { fg = C.subtext0, bg = C.none },
8+
VimwikiMarkers = { fg = C.subtext1, bg = C.none },
99
VimwikiHeader1 = { fg = C.orange, bg = C.none, bold = true },
1010
VimwikiHeader2 = { fg = C.green, bg = C.none, bold = true },
1111
VimwikiHeader3 = { fg = C.blue, bg = C.none, bold = true },

0 commit comments

Comments
 (0)