Re: [FFmpeg-devel] [PATCH 3/4] web/style.less: colors: Reindent and use more obvious functions

2014-11-12 Thread Michael Niedermayer
On Mon, Nov 10, 2014 at 10:10:21PM -0800, Timothy Gu wrote:
 On Thu, Nov 6, 2014 at 6:55 PM, Timothy Gu timothyg...@gmail.com wrote:
  Signed-off-by: Timothy Gu timothyg...@gmail.com
  ---
  I feel like using hsl() in this case is clearer that the color is plain
  gray. Bikeshedding welcome.
  ---
   src/less/style.less | 31 +++
   1 file changed, 19 insertions(+), 12 deletions(-)
 
 Ping, and CC'ing db0 who is the maintainer of the website.

i can apply it if someone confirms that this is ok/equivalent or
preferred

[...]

-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Those who are best at talking, realize last or never when they are wrong.


signature.asc
Description: Digital signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 3/4] web/style.less: colors: Reindent and use more obvious functions

2014-11-12 Thread Michael Niedermayer
On Wed, Nov 12, 2014 at 01:40:43PM +0100, Michael Niedermayer wrote:
 On Mon, Nov 10, 2014 at 10:10:21PM -0800, Timothy Gu wrote:
  On Thu, Nov 6, 2014 at 6:55 PM, Timothy Gu timothyg...@gmail.com wrote:
   Signed-off-by: Timothy Gu timothyg...@gmail.com
   ---
   I feel like using hsl() in this case is clearer that the color is plain
   gray. Bikeshedding welcome.
   ---
src/less/style.less | 31 +++
1 file changed, 19 insertions(+), 12 deletions(-)
  
  Ping, and CC'ing db0 who is the maintainer of the website.
 
 i can apply it if someone confirms that this is ok/equivalent or
 preferred

also if theres no reply by anyone within a few days then please ping
me again and ill push it

[...]

-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

I have never wished to cater to the crowd; for what I know they do not
approve, and what they approve I do not know. -- Epicurus


signature.asc
Description: Digital signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 3/4] web/style.less: colors: Reindent and use more obvious functions

2014-11-12 Thread db0 company
On Mon, Nov 10, 2014 at 10:10 PM, Timothy Gu timothyg...@gmail.com wrote:
 Ping, and CC'ing db0 who is the maintainer of the website.

I can't apply it myself. It looks good to me.

-- 
db0 - Deby Barbara Lepage
  http://db0.fr/
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 3/4] web/style.less: colors: Reindent and use more obvious functions

2014-11-12 Thread Michael Niedermayer
On Wed, Nov 12, 2014 at 11:51:34AM -0800, db0 company wrote:
 On Mon, Nov 10, 2014 at 10:10 PM, Timothy Gu timothyg...@gmail.com wrote:
  Ping, and CC'ing db0 who is the maintainer of the website.
 
 I can't apply it myself. It looks good to me.

applied

thanks

PS: if you want write access, send me your public ssh key

[...]
-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Breaking DRM is a little like attempting to break through a door even
though the window is wide open and the only thing in the house is a bunch
of things you dont want and which you would get tomorrow for free anyway


signature.asc
Description: Digital signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 3/4] web/style.less: colors: Reindent and use more obvious functions

2014-11-10 Thread Timothy Gu
On Thu, Nov 6, 2014 at 6:55 PM, Timothy Gu timothyg...@gmail.com wrote:
 Signed-off-by: Timothy Gu timothyg...@gmail.com
 ---
 I feel like using hsl() in this case is clearer that the color is plain
 gray. Bikeshedding welcome.
 ---
  src/less/style.less | 31 +++
  1 file changed, 19 insertions(+), 12 deletions(-)

Ping, and CC'ing db0 who is the maintainer of the website.

[...]

Timothy
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


[FFmpeg-devel] [PATCH 3/4] web/style.less: colors: Reindent and use more obvious functions

2014-11-06 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com
---
I feel like using hsl() in this case is clearer that the color is plain
gray. Bikeshedding welcome.
---
 src/less/style.less | 31 +++
 1 file changed, 19 insertions(+), 12 deletions(-)

diff --git a/src/less/style.less b/src/less/style.less
index 7de443b..c9ebdc8 100644
--- a/src/less/style.less
+++ b/src/less/style.less
@@ -24,18 +24,25 @@ SOFTWARE.
 // * //
 // COLORS
 
-@Cmain: #313131;
-@Cmaindark: darken(@Cmain, 5%);
-@Cmaindarkdark: darken(@Cmaindark, 5%);
-@Cmainlight: lighten(@Cmain, 5%);
-@Cmainlightlight: lighten(@Cmainlight, 50%);
-@Cborder: #101010;
-@Cinvert: darken(#fff, 10%);
-@Csecond: darken(#4cae4c, 0%);
-@Cseconddark: darken(@Csecond, 10%);
-@Cseconddarkdark: darken(@Cseconddark, 10%);
-@Csecondlight: lighten(@Csecond, 15%);
-@Csecondlightlight: lighten(@Csecondlight, 20%);
+// Main black color and its shades.
+@Cmain: hsl(0, 0%,19%);
+@Cmaindark:  darken(@Cmain,5%);
+@Cmaindarkdark:  darken(@Cmain,   10%);
+@Cborder:darken(@Cmain,   13%);
+@Cmainlight:lighten(@Cmain,5%);
+@Cmainlightlight:   lighten(@Cmain,   55%);
+
+// Complete invert of the main black theme.
+@Cinvert:   hsl(0, 0%,90%);
+
+// The green theme colors and its shades.
+@Csecond:   #4cae4c;
+@Cseconddark:darken(@Csecond, 10%);
+@Cseconddarkdark:darken(@Csecond, 20%);
+@Csecondlight:  lighten(@Csecond, 15%);
+@Csecondlightlight: lighten(@Csecond, 35%);
+
+// The red theme color.
 @Cwarning: #ae4c4c;
 
 // * //
-- 
1.9.1

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel