|
| 1 | +-- Copyright (c) 2020-2021 shadmansaleh |
| 2 | +-- MIT license, see LICENSE for more details. |
| 3 | +-- Credit itchyny, jackno (lightline) |
| 4 | +-- stylua: ignore |
| 5 | +local colors = { |
| 6 | + gray = '#181616', |
| 7 | + lightgray = '#393836', |
| 8 | + orange = '#d18c61', |
| 9 | + purple = '#a292a3', |
| 10 | + red = '#c4746e', |
| 11 | + yellow = '#c4b28a', |
| 12 | + green = '#8a9a7b', |
| 13 | + white = '#c8c093', |
| 14 | + black = '#0d0c0c', |
| 15 | +} |
| 16 | + |
| 17 | +return { |
| 18 | + normal = { |
| 19 | + a = { bg = colors.purple, fg = colors.black, gui = 'bold' }, |
| 20 | + b = { bg = colors.lightgray, fg = colors.white }, |
| 21 | + c = { bg = colors.gray, fg = colors.white }, |
| 22 | + }, |
| 23 | + insert = { |
| 24 | + a = { bg = colors.green, fg = colors.black, gui = 'bold' }, |
| 25 | + b = { bg = colors.lightgray, fg = colors.white }, |
| 26 | + c = { bg = colors.gray, fg = colors.white }, |
| 27 | + }, |
| 28 | + visual = { |
| 29 | + a = { bg = colors.yellow, fg = colors.black, gui = 'bold' }, |
| 30 | + b = { bg = colors.lightgray, fg = colors.white }, |
| 31 | + c = { bg = colors.gray, fg = colors.white }, |
| 32 | + }, |
| 33 | + replace = { |
| 34 | + a = { bg = colors.red, fg = colors.black, gui = 'bold' }, |
| 35 | + b = { bg = colors.lightgray, fg = colors.white }, |
| 36 | + c = { bg = colors.gray, fg = colors.white }, |
| 37 | + }, |
| 38 | + command = { |
| 39 | + a = { bg = colors.orange, fg = colors.black, gui = 'bold' }, |
| 40 | + b = { bg = colors.lightgray, fg = colors.white }, |
| 41 | + c = { bg = colors.gray, fg = colors.white }, |
| 42 | + }, |
| 43 | + inactive = { |
| 44 | + a = { bg = colors.gray, fg = colors.white, gui = 'bold' }, |
| 45 | + b = { bg = colors.lightgray, fg = colors.white }, |
| 46 | + c = { bg = colors.lightgray, fg = colors.white }, |
| 47 | + }, |
| 48 | +} |
0 commit comments