git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH 1/2] gitk: refresh the colour scheme
@ 2019-02-26 11:05 Andrej Shadura
  2019-02-26 11:05 ` [PATCH 2/2] gitk: disable autoselect by default Andrej Shadura
  2019-03-02 23:02 ` [PATCH 1/2] gitk: refresh the colour scheme Paul Mackerras
  0 siblings, 2 replies; 5+ messages in thread
From: Andrej Shadura @ 2019-02-26 11:05 UTC (permalink / raw)
  To: git; +Cc: Paul Mackerras

The colours gitk is currently using are from the basic 16 colour
palette, and are a bit too intensive to be comfortable or pleasant
to work with.

Adjust the main colours (commit nodes, remotes, tags and one branch
colour) to be slightly softer.

Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
---
 gitk-git/gitk | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gitk-git/gitk b/gitk-git/gitk
index a14d7a16b2..5766754ab6 100755
--- a/gitk-git/gitk
+++ b/gitk-git/gitk
@@ -12302,7 +12302,7 @@ if {[tk windowingsystem] eq "aqua"} {
     set extdifftool "meld"
 }
 
-set colors {"#00ff00" red blue magenta darkgrey brown orange}
+set colors {"#00ff00" red blue #f282f2 darkgrey brown orange}
 if {[tk windowingsystem] eq "win32"} {
     set uicolor SystemButtonFace
     set uifgcolor SystemButtonText
@@ -12325,11 +12325,11 @@ set ignorespace 0
 set worddiff ""
 set markbgcolor "#e0e0ff"
 
-set headbgcolor "#00ff00"
+set headbgcolor #98ff5e
 set headfgcolor black
 set headoutlinecolor black
-set remotebgcolor #ffddaa
-set tagbgcolor yellow
+set remotebgcolor #bae2ff
+set tagbgcolor #f3fb57
 set tagfgcolor black
 set tagoutlinecolor black
 set reflinecolor black
@@ -12338,10 +12338,10 @@ set filesepfgcolor black
 set linehoverbgcolor #ffff80
 set linehoverfgcolor black
 set linehoveroutlinecolor black
-set mainheadcirclecolor yellow
+set mainheadcirclecolor #ffeb74
 set workingfilescirclecolor red
 set indexcirclecolor "#00ff00"
-set circlecolors {white blue gray blue blue}
+set circlecolors {white #08b5ed gray blue blue}
 set linkfgcolor blue
 set circleoutlinecolor $fgcolor
 set foundbgcolor yellow
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] gitk: disable autoselect by default
  2019-02-26 11:05 [PATCH 1/2] gitk: refresh the colour scheme Andrej Shadura
@ 2019-02-26 11:05 ` Andrej Shadura
  2019-03-02 23:02 ` [PATCH 1/2] gitk: refresh the colour scheme Paul Mackerras
  1 sibling, 0 replies; 5+ messages in thread
From: Andrej Shadura @ 2019-02-26 11:05 UTC (permalink / raw)
  To: git; +Cc: Paul Mackerras

Auto-selection of the commit hash overwrites whatever content was in the
selection clipboard, and also pollutes the clipboard history if the user
is using a clipboard manager. Most users probably want this off by
default.

Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
---
 gitk-git/gitk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gitk-git/gitk b/gitk-git/gitk
index 5766754ab6..583e505709 100755
--- a/gitk-git/gitk
+++ b/gitk-git/gitk
@@ -12291,7 +12291,7 @@ set maxlinelen 200
 set showlocalchanges 1
 set limitdiffs 1
 set datetimeformat "%Y-%m-%d %H:%M:%S"
-set autoselect 1
+set autoselect 0
 set autosellen 40
 set perfile_attrs 0
 set want_ttk 1
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] gitk: refresh the colour scheme
  2019-02-26 11:05 [PATCH 1/2] gitk: refresh the colour scheme Andrej Shadura
  2019-02-26 11:05 ` [PATCH 2/2] gitk: disable autoselect by default Andrej Shadura
@ 2019-03-02 23:02 ` Paul Mackerras
  2019-03-04  9:35   ` Andrej Shadura
  1 sibling, 1 reply; 5+ messages in thread
From: Paul Mackerras @ 2019-03-02 23:02 UTC (permalink / raw)
  To: Andrej Shadura; +Cc: git

On Tue, Feb 26, 2019 at 12:05:34PM +0100, Andrej Shadura wrote:
> The colours gitk is currently using are from the basic 16 colour
> palette, and are a bit too intensive to be comfortable or pleasant
> to work with.
> 
> Adjust the main colours (commit nodes, remotes, tags and one branch
> colour) to be slightly softer.
> 
> Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>

Thanks for the patch, but I disagree.  I do like the change you made
to the tag colours, but the blue you have for the commit node circles
is pretty blah.  That needs a more definite colour.

Also, the "too intensive to be comfortable or pleasant" in the commit
message reflect a personal preference, and the way it is put seems to
me to be too intensive to be comfortable or pleasant.

Paul.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] gitk: refresh the colour scheme
  2019-03-02 23:02 ` [PATCH 1/2] gitk: refresh the colour scheme Paul Mackerras
@ 2019-03-04  9:35   ` Andrej Shadura
  2021-02-04 20:34     ` Andrej Shadura
  0 siblings, 1 reply; 5+ messages in thread
From: Andrej Shadura @ 2019-03-04  9:35 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: git

On 03/03/2019 00:02, Paul Mackerras wrote:
> On Tue, Feb 26, 2019 at 12:05:34PM +0100, Andrej Shadura wrote:
>> The colours gitk is currently using are from the basic 16 colour
>> palette, and are a bit too intensive to be comfortable or pleasant
>> to work with.
>>
>> Adjust the main colours (commit nodes, remotes, tags and one branch
>> colour) to be slightly softer.
>>
>> Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
> 
> Thanks for the patch, but I disagree.  I do like the change you made
> to the tag colours, but the blue you have for the commit node circles
> is pretty blah.  That needs a more definite colour.

I see.

1) Would you accept the patch without that change?
2) What colour would you prefer (except the already existing one)?

> Also, the "too intensive to be comfortable or pleasant" in the commit
> message reflect a personal preference, and the way it is put seems to
> me to be too intensive to be comfortable or pleasant.

Hmm, sorry if that came across not the way I intended. I was trying to
formulate the thought in a way that would not be emotional or
subjective, but I guess the end result was exactly opposite.

-- 
Cheers,
  Andrej

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] gitk: refresh the colour scheme
  2019-03-04  9:35   ` Andrej Shadura
@ 2021-02-04 20:34     ` Andrej Shadura
  0 siblings, 0 replies; 5+ messages in thread
From: Andrej Shadura @ 2021-02-04 20:34 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: git

Hi,

On 04/03/2019 10:35, Andrej Shadura wrote:
> On 03/03/2019 00:02, Paul Mackerras wrote:
>> On Tue, Feb 26, 2019 at 12:05:34PM +0100, Andrej Shadura wrote:
>>> The colours gitk is currently using are from the basic 16 colour
>>> palette, and are a bit too intensive to be comfortable or pleasant
>>> to work with.
>>>
>>> Adjust the main colours (commit nodes, remotes, tags and one branch
>>> colour) to be slightly softer.
>>>
>>> Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
>>
>> Thanks for the patch, but I disagree.  I do like the change you made
>> to the tag colours, but the blue you have for the commit node circles
>> is pretty blah.  That needs a more definite colour.
> 
> I see.
> 
> 1) Would you accept the patch without that change?
> 2) What colour would you prefer (except the already existing one)?

>> Also, the "too intensive to be comfortable or pleasant" in the commit
>> message reflect a personal preference, and the way it is put seems to
>> me to be too intensive to be comfortable or pleasant.
> 
> Hmm, sorry if that came across not the way I intended. I was trying to
> formulate the thought in a way that would not be emotional or
> subjective, but I guess the end result was exactly opposite.

I’d be happy to resubmit the patch adjusted to your preference, only if
you gave me some more ideas on how you’d like to see it.

Thanks in advance.

-- 
Cheers,
  Andrej

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-02-04 20:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-26 11:05 [PATCH 1/2] gitk: refresh the colour scheme Andrej Shadura
2019-02-26 11:05 ` [PATCH 2/2] gitk: disable autoselect by default Andrej Shadura
2019-03-02 23:02 ` [PATCH 1/2] gitk: refresh the colour scheme Paul Mackerras
2019-03-04  9:35   ` Andrej Shadura
2021-02-04 20:34     ` Andrej Shadura

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).