Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
Recent Tutorials
Top posting users this month
Top Achievers
Who is online?
In total there are 83 users online :: 0 Registered, 0 Hidden and 83 Guests :: 1 Bot
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
[SERIOUS REQUEST] Add KLM Flying Blue to the themes
Page 1 of 1 • Share
- GuestGuest
I've got a real serious request here to add 'KLM Flying Blue' to the themes. Please, Google 'klm blue' or visit https://www.klm.com/home/us/en (gawd... 3,700 Euros for a round-trip to LA from Amsterdam for 2 adults and 3 kids in January . Where's my magic wand to turn them into 0 year olds again? ) for the shades. There are 2. A bright color of blue (#07a2de ?) (primary) and a dark blue color (#003145 ?) (secondary). The tertiary color is 'black', most likely. I don't know what formula you're using to add the color values for the JS. If I did, I could possibly add the theme to the JS myself.
Reason: Living next to Amsterdam Schiphol Airport lots of potential members work at the place. And KLM MAY BE one of our sponsors / partners, I've learned today. Which is kinda very very cool. Like... AWESOME!
Thanks for adding the KLM Flying Blue color scheme and your time.
Samantha (on behalf of @Prometheus (and me)).
Reason: Living next to Amsterdam Schiphol Airport lots of potential members work at the place. And KLM MAY BE one of our sponsors / partners, I've learned today. Which is kinda very very cool. Like... AWESOME!
Thanks for adding the KLM Flying Blue color scheme and your time.
Samantha (on behalf of @Prometheus (and me)).
Last edited by Samantha on Fri 23 Dec 2016, 11:02; edited 1 time in total
It can be added manually, but it requires editing the ALL.JS file on your forum. The way I create the palettes and different shades was like this :
Basically I'd take a single color, then create 4 different shades by adding and subtracting digits. I used shorthand hex since it was easier to work with and took up less space. Anyway, the primary color is #69C and the secondary color is #345 -- the colors don't have to be of the same shade though.
Using the colors you gave me, we could create something like this :
Now that we have a palette we can add it to the theme selector. Go to Admin Panel > Modules > JS codes management > ALL.JS
Find
( line 78 ) and add your new palette after it. Make sure to add a comma after your palette since there will be other palettes after it. The end result should look something like this :
- Code:
'Danube' : [
'#7AD', // ALL DIGITS +1
'#69C', // BASE COLOR
'#58B', // ALL DIGITS -1
'#369', // ALL DIGITS -3
'#345' // SEE BELOW
];
// 0 = 0
// 1 = 1
// 3 = 2
// 6 = 3
// 9 = 4
// C = 5
// F = 6
// USE DISCRETION FOR COLORS IN BETWEEN
Basically I'd take a single color, then create 4 different shades by adding and subtracting digits. I used shorthand hex since it was easier to work with and took up less space. Anyway, the primary color is #69C and the secondary color is #345 -- the colors don't have to be of the same shade though.
Using the colors you gave me, we could create something like this :
- Code:
'KLM Blue' : ['#2BE', '#1AD', '#09C', '#07A', '#034']
Now that we have a palette we can add it to the theme selector. Go to Admin Panel > Modules > JS codes management > ALL.JS
Find
|
- Code:
'Select a theme' : [],
'Random theme' : [],
'KLM Blue' : ['#2BE', '#1AD', '#09C', '#07A', '#034'], // NEW THEME COLOR
'Silver' : ['#DDD', '#CCC', '#BBB', '#999', '#555'], // hue 000
'Dusty Gray' : ['#AAA', '#999', '#888', '#666', '#444'], // hue 000
- GuestGuest
Oh that's great! Thanks! Yeah I knew about the all.js and where it was and all I just can't figure out how you came to the shorthand codes based on what I gave you.
No problem.
Shorthand hex is pretty simple to understand and use, once you know how it works. Basically #F60 in shorthand is equal to #FF6600. The first digit is red, second green, and third blue. Knowing this, it's easy to select and create colors by changing these three digits in shorthand. Still, you sometimes might want to use the 6-digit notation since it allows for more exact colors. This has a pretty good explanation.
Shorthand hex is pretty simple to understand and use, once you know how it works. Basically #F60 in shorthand is equal to #FF6600. The first digit is red, second green, and third blue. Knowing this, it's easy to select and create colors by changing these three digits in shorthand. Still, you sometimes might want to use the 6-digit notation since it allows for more exact colors. This has a pretty good explanation.
- GuestGuest
- GuestGuest
Ange Tuteur wrote:No problem.
Shorthand hex is pretty simple to understand and use, once you know how it works. Basically #F60 in shorthand is equal to #FF6600. The first digit is red, second green, and third blue. Knowing this, it's easy to select and create colors by changing these three digits in shorthand. Still, you sometimes might want to use the 6-digit notation since it allows for more exact colors. This has a pretty good explanation.
Thanks. I saved the link you gave me. I'll prolly have another look at this topic soon to try and make my own theme, so please store it somewhere safe. ty
- Sponsored content
Similar topics
Create an account or log in to leave a reply
You need to be a member in order to leave a reply.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum