Home » Developing U++ » U++ Developers corner » DarkTheme support
Re: Please check the list of 2019.1 changes [message #51161 is a reply to message #51160] |
Tue, 12 February 2019 14:15   |
 |
mirek
Messages: 14258 Registered: November 2005
|
Ultimate Member |
|
|
Another try (posting here mostly for myself to keep the track...)

Color DarkTheme2(Color c)
{
int h = 255 - Grayscale(c);
int v[3], t[3];
v[0] = c.GetR();
v[1] = c.GetG();
v[2] = c.GetB();
t[0] = h;
t[1] = h;
t[2] = h;
int i0 = 0;
int i1 = 1;
int i2 = 2;
if(v[i0] > v[i1])
Swap(i0, i1);
if(v[i1] > v[i2])
Swap(i1, i2);
if(v[i0] > v[i1])
Swap(i0, i1);
t[i0] = clamp(h - (v[1] - v[0]), 0, 255);
int h2 = h + (v[2] - v[1]);
t[i2] = clamp(h2, 0, 255);
h2 -= t[i2];
t[i0] -= h2;
t[i1] -= h2;
return Color(t[i0], t[i1], t[i2]);
}
[Updated on: Tue, 12 February 2019 14:16] Report message to a moderator
|
|
|
 |
|
DarkTheme support
By: Tom1 on Fri, 08 February 2019 16:17
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Mon, 11 February 2019 11:52
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Mon, 11 February 2019 16:19
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Mon, 11 February 2019 21:03
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Tue, 12 February 2019 09:30
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Tue, 12 February 2019 12:44
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Tue, 12 February 2019 13:01
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Tue, 12 February 2019 13:50
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Tue, 12 February 2019 14:02
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Tue, 12 February 2019 14:15
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Tue, 12 February 2019 15:26
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Thu, 21 February 2019 09:52
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Tue, 12 February 2019 15:02
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Wed, 13 February 2019 09:38
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Wed, 13 February 2019 10:30
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Tue, 19 February 2019 12:10
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Tue, 19 February 2019 13:30
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Thu, 21 February 2019 09:53
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Fri, 22 February 2019 08:40
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Fri, 22 February 2019 19:04
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Thu, 07 March 2019 14:51
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Wed, 13 March 2019 00:16
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Wed, 13 March 2019 12:15
|
 |
|
Re: Please check the list of 2019.1 changes
By: Klugier on Sun, 17 March 2019 02:05
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Sun, 17 March 2019 10:15
|
 |
|
Re: Please check the list of 2019.1 changes
By: Klugier on Sun, 17 March 2019 11:54
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Sat, 23 March 2019 23:31
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Sun, 24 March 2019 09:53
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Sun, 24 March 2019 23:10
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Mon, 25 March 2019 11:45
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Mon, 25 March 2019 11:51
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Mon, 25 March 2019 12:29
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Mon, 25 March 2019 14:02
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Fri, 29 March 2019 09:30
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Fri, 29 March 2019 10:54
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Fri, 29 March 2019 16:31
|
 |
|
Re: Please check the list of 2019.1 changes
By: mirek on Sat, 30 March 2019 10:22
|
 |
|
Re: Please check the list of 2019.1 changes
By: Tom1 on Sat, 30 March 2019 12:50
|
Goto Forum:
Current Time: Wed May 14 02:10:53 CEST 2025
Total time taken to generate the page: 0.01220 seconds
|