Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: helix-editor/helix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: rojebd/helix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.

Commits on Dec 25, 2023

  1. added voxed theme

    rojebd committed Dec 25, 2023
    Copy the full SHA
    055f605 View commit details
  2. updated voxed.toml theme

    rojebd committed Dec 25, 2023
    Copy the full SHA
    d1817aa View commit details
  3. makes the theme not transparent by default

    Makes the theme not transparent by default but users can set it transparent if they want to
    rojebd committed Dec 25, 2023
    Copy the full SHA
    f0c7068 View commit details
  4. updated voxed theme comments

    rojebd committed Dec 25, 2023
    Copy the full SHA
    9342ae1 View commit details
  5. Copy the full SHA
    a18b94d View commit details
  6. updated voxed numeric colors

    rojebd committed Dec 25, 2023
    Copy the full SHA
    6af3a6c View commit details

Commits on Dec 26, 2023

  1. updated voxed background

    so its not transparent by default
    rojebd committed Dec 26, 2023
    Copy the full SHA
    cce5a3d View commit details

Commits on Dec 27, 2023

  1. Copy the full SHA
    2ef84aa View commit details

Commits on Dec 28, 2023

  1. used palette's own colours instead of helix's default such as lavende…

    …r etc
    rojebd committed Dec 28, 2023
    Copy the full SHA
    409a43b View commit details

Commits on Dec 29, 2023

  1. fixed suggested stuff

    rojebd committed Dec 29, 2023
    Copy the full SHA
    d25b810 View commit details
  2. makes cursor always white

    disables the cursor from changing color depeding on which color is hovering over it
    
    ex. hovers over blue -> cursor is blue
    rojebd committed Dec 29, 2023
    Copy the full SHA
    e1e6e8a View commit details

Commits on Jan 1, 2024

  1. fixed lsp popup colors

    rojebd committed Jan 1, 2024
    Copy the full SHA
    8b0a3a3 View commit details

Commits on Jan 3, 2024

  1. made statusline more readable

    rojebd committed Jan 3, 2024
    Copy the full SHA
    59ba52a View commit details
  2. Copy the full SHA
    b9d5e40 View commit details
  3. updated cursor colors so white is more visible

    rojebd committed Jan 3, 2024
    Copy the full SHA
    a82ce83 View commit details

Commits on Jan 6, 2024

  1. Copy the full SHA
    80fd431 View commit details
  2. Copy the full SHA
    fc93edb View commit details
  3. accidentally reverted changes now i actually changed ruler to bgrey-two

    rojebd committed Jan 6, 2024
    Copy the full SHA
    2bdac2d View commit details

Commits on Jan 13, 2024

  1. update voxed theme

    rojebd committed Jan 13, 2024
    Copy the full SHA
    56ca1ac View commit details
  2. Copy the full SHA
    a3e281f View commit details

Commits on Jan 16, 2024

  1. updated ident guide

    rojebd committed Jan 16, 2024
    Copy the full SHA
    6944660 View commit details
  2. Copy the full SHA
    4530cb5 View commit details

Commits on Jan 17, 2024

  1. added vintage theme

    rojebd committed Jan 17, 2024
    Copy the full SHA
    031ca77 View commit details
  2. Copy the full SHA
    ff024bd View commit details

Commits on Nov 10, 2024

  1. Merge branch 'master' into master

    rojebd authored Nov 10, 2024
    Copy the full SHA
    f76941d View commit details
Showing with 11 additions and 4 deletions.
  1. +11 −4 runtime/themes/voxed.toml
15 changes: 11 additions & 4 deletions runtime/themes/voxed.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Voxed theme for the Helix Editor
# Author: rojebd<roniellberrios@gmail.com>
# Repo: https://github.com/rojebd/voxed
# Version: 1.0
# Info: This is a theme I made one afternoon because I was bored

attribute = "buff"
keyword = "sglow"
"keyword.directive" = "defineish"
@@ -43,6 +49,7 @@ label = "yellow"
"ui.background.separator" = { fg = "sglow" }
"ui.linenr" = { fg = "light-grey", modifiers = ["italic"] }
"ui.linenr.selected" = { fg = "bpink", modifiers = ["bold"] }

"ui.statusline" = { fg = "black", bg = "light-grey", modifiers = ["bold"] }
"ui.statusline.inactive" = { fg = "black", bg = "bgrey-two" }
"ui.popup" = { fg = "bgrey", bg = "#25262B" }
@@ -54,15 +61,17 @@ label = "yellow"
"ui.text.inactive" = "bgrey"
"ui.virtual" = { fg = "blue" }
"ui.virtual.ruler" = { bg = "bgrey-two" }
"ui.virtual.indent-guide" = { fg = "bpink" }
"ui.virtual.indent-guide" = { fg = "gray" }


"ui.selection" = { bg = "maize" }
"ui.selection.primary" = { fg = "white", bg = "bgrey" }
"ui.cursor.select" = { bg = "white" }
"ui.cursor.insert" = { bg = "white" }
"ui.cursor.match" = { fg = "#212121", bg = "#6C6999" }
"ui.cursor" = { bg = "bgrey-two", modifiers = ["reversed"] }
"ui.cursorline.primary" = { bg = "white" }
"ui.cursorline.primary" = { bg = "#44414c" }

"ui.highlight" = { bg = "white" }
"ui.highlight.frameline" = { bg = "#634450" }
"ui.debug" = { fg = "#634450" }
@@ -75,8 +84,6 @@ label = "yellow"
"diagnostic.info" = { underline = { color = "sglow", style = "curl" } }
"diagnostic.warning" = { underline = { color = "redish", style = "curl" } }
"diagnostic.error" = { underline = { color = "bpink", style = "curl" } }
"diagnostic.unnecessary" = { modifiers = ["dim"] }
"diagnostic.deprecated" = { modifiers = ["crossed_out"] }

warning = "bpink"
error = "bsienna"