We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Another related question:
Some of the highlight color info is currently in the extra value, I have to do this to get the color code:
def get_color( block: SceneLineItemBlock | SceneGlyphItemBlock, ) -> tuple[int, int, int, int]: if block.extra_data and len(block.extra_data) >= 5: *_, b, g, r, a = block.extra_data return (r, g, b, a) r, g, b = remarkable_palette[block.item.value.color] return (r, g, b, 255)
Should I create a PR here or in rmscene?
Originally posted by @ChenghaoMou in #18 (comment)
The text was updated successfully, but these errors were encountered:
See ricklupton/rmscene#38
Sorry, something went wrong.
No branches or pull requests
Some of the highlight color info is currently in the extra value, I have to do this to get the color code:
Should I create a PR here or in rmscene?
Originally posted by @ChenghaoMou in #18 (comment)
The text was updated successfully, but these errors were encountered: