Skip to content

Commit

Permalink
Catppuccin base colors and Fira Code Nerd Font as default.
Browse files Browse the repository at this point in the history
  • Loading branch information
cronyakatsuki committed Sep 22, 2022
1 parent 6895c15 commit ee7fb97
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions wlines.c
Original file line number Diff line number Diff line change
Expand Up @@ -675,17 +675,17 @@ int main(int argc, char **argv)
state_t state = {
.settings = {
.wndClass = L"wlines_window",
.padding = 4,
.padding = 10,
.filterMode = FM_COMPLETE,
.caseSensitiveSearch = false,
.bg = parseColor("#000000"),
.fg = parseColor("#ffffff"),
.bgSelect = parseColor("#ffffff"),
.fgSelect = parseColor("#000000"),
.bgEdit = parseColor("#111111"),
.fgEdit = parseColor("#ffffff"),
.fontName = "Courier New",
.fontSize = 24,
.bg = parseColor("#303446"),
.fg = parseColor("#c6d0f5"),
.bgSelect = parseColor("#8caaee"),
.fgSelect = parseColor("#303446"),
.bgEdit = parseColor("#303446"),
.fgEdit = parseColor("#c6d0f5"),
.fontName = "FiraCode NF",
.fontSize = 12,
.lineCount = 15,
},
};
Expand Down

0 comments on commit ee7fb97

Please sign in to comment.