summaryrefslogtreecommitdiffstats
path: root/.config/nvim/pywal/matugen.lua
blob: e810a81665df157809a346eb1e51f6fa541e979b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
local M = {}

local lighten = require("base46.colors").change_hex_lightness

M.base_30 = {
  white = '{{colors.on_background.default.hex}}',
  black = '{{colors.background.default.hex}}',
  darker_black = lighten('{{colors.background.default.hex}}', -3),
  black2 = lighten('{{colors.background.default.hex}}', 6),
  one_bg = lighten('{{colors.background.default.hex}}', 10),
  one_bg2 = lighten('{{colors.background.default.hex}}', 16),
  one_bg3 = lighten('{{colors.background.default.hex}}', 22),
  grey = '{{colors.surface_variant.default.hex}}',
  grey_fg = lighten('{{colors.surface_variant.default.hex}}', -10),
  grey_fg2 = lighten('{{colors.surface_variant.default.hex}}', -20),
  light_grey = '{{colors.outline.default.hex}}',
  red = '{{colors.error.default.hex}}',
  baby_pink = lighten('{{colors.error.default.hex}}', 10),
  pink = '{{colors.tertiary.default.hex}}',
  line = '{{colors.outline.default.hex}}',
  green = '{{colors.secondary.default.hex}}',
  vibrant_green = lighten('{{colors.secondary.default.hex}}', 10),
  blue = '{{colors.primary.default.hex}}',
  nord_blue = lighten('{{colors.primary.default.hex}}', 10),
  yellow = lighten('{{colors.tertiary.default.hex}}', 10),
  sun = lighten('{{colors.tertiary.default.hex}}', 20),
  purple = '{{colors.tertiary.default.hex}}',
  dark_purple = lighten('{{colors.tertiary.default.hex}}', -10),
  teal = '{{colors.secondary_container.default.hex}}',
  orange = '{{colors.error.default.hex}}',
  cyan = '{{colors.secondary.default.hex}}',
  statusline_bg = lighten('{{colors.background.default.hex}}', 6),
  pmenu_bg = '{{colors.surface_variant.default.hex}}',
  folder_bg = lighten('{{colors.primary_fixed_dim.default.hex}}', 0),
  lightbg = lighten('{{colors.background.default.hex}}', 10),
}

M.base_16 = {
  base00 = '{{colors.surface.default.hex}}',
  base01 = lighten('{{colors.surface_variant.default.hex}}', 0),
  base02 = '{{colors.secondary_fixed_dim.default.hex}}',
  base03 = lighten('{{colors.outline.default.hex}}', 0),
  base04 = lighten('{{colors.on_surface_variant.default.hex}}', 0),
  base05 = '{{colors.on_surface.default.hex}}',
  base06 = lighten('{{colors.on_surface.default.hex}}', 0),
  base07 = '{{colors.surface.default.hex}}',
  base08 = lighten('{{colors.error.default.hex}}', -10),
  base09 = '{{colors.tertiary.default.hex}}',
  base0A = '{{colors.primary.default.hex}}',
  base0B = '{{colors.tertiary_fixed.default.hex}}',
  base0C = '{{colors.primary_fixed_dim.default.hex}}',
  base0D = lighten('{{colors.primary_container.default.hex}}', 20),
  base0E = '{{colors.on_primary_container.default.hex}}',
  base0F = '{{colors.inverse_surface.default.hex}}',
}

M.type = "dark"  -- or "light" depending on your theme

M.polish_hl = {
  defaults = {
    Comment = {
      italic = true,
      fg = M.base_16.base03,
    },
  },
  Syntax = {
    String = {
      fg = '{{colors.tertiary.default.hex}}'
    }
  },
  treesitter = {
    ["@comment"] = {
      fg = M.base_16.base03,
    },
    ["@string"] = {
      fg = '{{colors.tertiary.default.hex}}'
    },
  }
}

return M