Home » Developing U++ » U++ Developers corner » DarkTheme support
Re: Please check the list of 2019.1 changes [message #51210 is a reply to message #51161] |
Thu, 21 February 2019 09:52   |
 |
mirek
Messages: 14258 Registered: November 2005
|
Ultimate Member |
|
|
Next iteration of DarkTheme function. I guess this is the final one...

Color DarkTheme2(Color color)
{
if(IsNull(color))
return Null;
double v[3];
v[0] = color.GetR();
v[1] = color.GetG();
v[2] = color.GetB();
static double c[3] = { 0.21, 0.72, 0.07 };
double m0 = 0.21 * v[0] + 0.72 * v[1] + 0.07 * v[2];
double m = 256 - m0;
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);
if(m0 < m) {
m -= m0;
double a = min(v[i2] + m, 255.0) - v[i2];
v[i0] += a;
v[i1] += a;
v[i2] += a;
m -= a;
a = min(v[i1] + m / (c[i0] + c[i1]), 255.0) - v[i1];
v[i0] += a;
v[i1] += a;
m -= (c[i0] + c[i1]) * a;
v[i0] = min(v[i0] + m / c[i1], 255.0);
}
else {
m = m0 - m;
double a = v[i0] - max(v[i0] - m, 0.0);
v[i0] -= a;
v[i1] -= a;
v[i2] -= a;
m -= a;
a = v[i1] - max(v[i1] - m / (c[i1] + c[i2]), 0.0);
v[i1] -= a;
v[i2] -= a;
m -= (c[i1] + c[i2]) * a;
v[i2] = max(v[i2] - m / c[i2], 0.0);
}
return Color((int)v[0], (int)v[1], (int)v[2]);
}
|
|
|
 |
|
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:13:22 CEST 2025
Total time taken to generate the page: 0.01878 seconds
|