Unverified Commit e18f57be authored by Ryuya Ikeda's avatar Ryuya Ikeda Committed by GitHub
Browse files

style(theme): add solarized themes (#281)

parent 8dca589a
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -125,6 +125,18 @@ const themes = {
    text_color: "ffd95b",
    bg_color: "000000",
  },
  "solarized-dark": {
    title_color: "268bd2",
    icon_color: "b58900",
    text_color: "859900",
    bg_color: "002b36",
  },
  "solarized-light": {
    title_color: "268bd2",
    icon_color: "b58900",
    text_color: "859900",
    bg_color: "fdf6e3",
  },
};

module.exports = themes;