-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cterm colors #93
base: main
Are you sure you want to change the base?
Cterm colors #93
Conversation
Thanks for the PR! I am a bit split on this, as we originally intentionally ignored support for If we add support for I think, probably we just say Can you also add:
|
@@ -28,7 +28,8 @@ local function allowed_option_keys() | |||
-- could be any value | |||
"fg", "bg", "sp", | |||
"gui", -- should be a string | |||
"blend", -- integer | |||
-- integers | |||
"blend", "ctermfg", "ctermbg", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you confirm this is only ints? I think they can be "red"
etc too?
The import script should probably be updated to go along with this change as well. |
I was hoping to generate cterm colors (
ctermfg
andctermbg
) in a theme I'm working on. This should be everything needed to get it working.