Skip to content
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

Convert UltraEdit Color Schemes for use in ConEmu #932

Closed
Maximus5 opened this issue Jul 31, 2015 · 2 comments
Closed

Convert UltraEdit Color Schemes for use in ConEmu #932

Maximus5 opened this issue Jul 31, 2015 · 2 comments
Assignees

Comments

@Maximus5
Copy link
Owner

Originally reported on Google Code with ID 932

I was thinking it might be nice to have more color schemes in ConEmu for folks to use.

Now a guy I know has gone and converted a bunch of color schemes from different editors
to be used with our editor of choice UltraEdit.

http://www.ultraedit.com/forums/viewtopic.php?f=3&t=8924

He's got 1600+ schemes\themes converted over...just need to convert them over to what
can be used by ConEmu and map the colors correctly.

Code to convert from the decimal format used by UE to standard RGB 255 format. This
is done in AutoIt...but should be clear enough to rewrite it in a different programming
lang.

$nColor = 3552302
$R = BitAND($nColor, 0xFF)
$G = BitAND(BitShift($nColor, 8), 0xFF)
$B = BitAND(BitShift($nColor, 16), 0xFF) 

Anyways thought it might be an idea to toss around.

Reported by guypeters007 on 2013-02-10 22:46:47

@Maximus5 Maximus5 self-assigned this Jul 31, 2015
@Maximus5
Copy link
Owner Author

130210
You may use "decimal UE format" in ConEmu color fields.

Reported by ConEmu.Maximus5 on 2013-02-10 23:03:36

@Maximus5
Copy link
Owner Author

Reported by ConEmu.Maximus5 on 2013-10-23 15:46:54

  • Status changed: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant