Discussion:
[Pyzo] Pyzo GUI colors
ro jan
2016-05-15 18:47:24 UTC
Permalink
Hello everyone,

I just started learning Python and have been looking for a suitable IDE.
Pyzo is the one!

But I would like to change the GUI colors to a dark theme.

Anyone got ideas, methods on how to do that?

Thanks,

Robert
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Almar Klein
2016-05-17 09:55:46 UTC
Permalink
Hi Robert,

Unfortunately, this is not yet possible in an easy way. See http://www.pyzo.org/pyzo_themes.html

Regards,
Almar



From: ro jan
Sent: 15 May 2016 20:47
To: Pyzo
Subject: [Pyzo] Pyzo GUI colors


Hello everyone,

I just started learning Python and have been looking for a suitable IDE.  Pyzo is the one!

But I would like to change the GUI colors to a dark theme.

Anyone got ideas, methods on how to do that?

Thanks,

Robert
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
l***@gmail.com
2016-06-25 13:00:11 UTC
Permalink
Well, besides being a bit ahem hard, the list of colors in that source is incomplete.
Can't find the setting for parentheses/brackets matching, or for the find/highlight...

Has anyone prepared a more comprehensive list for a secondary dark setup, like a classic "Obsidian"? (as in Notepad++)

Luca
Post by Almar Klein
Hi Robert,
 
Unfortunately, this is not yet possible in an easy way. See http://www.pyzo.org/pyzo_themes.html
 
Regards,
  Almar
 
 
 
From: ro jan
Sent: 15 May 2016 20:47
To: Pyzo
Subject: [Pyzo] Pyzo GUI colors
 
 
Hello everyone,
 
I just started learning Python and have been looking for a suitable IDE.  Pyzo is the one!
 
But I would like to change the GUI colors to a dark theme.
 
Anyone got ideas, methods on how to do that?
 
Thanks,
 
Robert
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
For more options, visit https://groups.google.com/d/optout.
 
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
s***@gmail.com
2016-07-07 02:13:32 UTC
Permalink
Here's a link to get you started: http://blogs.univ-poitiers.fr/laurentsignac/2013/09/01/sublime-dark-iep/. However, this article is for IEP, on Pyzo, on Pyzo, I cannot change the color of brackets.
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
l***@gmail.com
2016-07-07 08:43:00 UTC
Permalink
Post by s***@gmail.com
Here's a link to get you started: http://blogs.univ-poitiers.fr/laurentsignac/2013/09/01/sublime-dark-iep/. However, this article is for IEP, on Pyzo, on Pyzo, I cannot change the color of brackets.
That's nice! I'm not fond of the pink tones in that theme, but it can be easily adjusted to anyone's likings.
Now, if I could only get the proper way to set parentheses matching that still makes them dazzled...
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Almar Klein
2016-07-07 09:19:49 UTC
Permalink
Syntax.openparen and Syntax.closeparen




From: ***@gmail.com
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
l***@inbox.com
2016-07-10 16:22:55 UTC
Permalink
I fixed it with the hardcoded color in codeeditor/extensions/appearance.py like the following:
-------------------------------------------------
class HighlightMatchingBracket(object):

# Register style element
_styleElements = [ ( 'Editor.Highlight matching bracket',
'The background color to highlight matching brackets.',
#'back:#ccc',
'back:#111',
) ]
-------------------------------------------------
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
s***@gmail.com
2016-07-14 05:16:46 UTC
Permalink
Works nice, appreciated!
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
a***@gmail.com
2016-12-22 10:05:07 UTC
Permalink
Hi everyone,
Thanks to you I set a dark theme on Pyzo but I would like to change the color of functions when you call them (not when created) from the current white to another color.
How could I do that ? Is there something like Syntax.openparen ?
--
You received this message because you are subscribed to the Google Groups "Pyzo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyzo+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...