IMPORTANT

FM Design is in read-only mode, please click here for more information.

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

Recent Tutorials
Top posting users this month

Who is online?
In total there are 37 users online :: 0 Registered, 0 Hidden and 37 Guests :: 1 Bot

None

[ View the whole list ]


Most users ever online was 515 on Tue 14 Sep 2021, 15:24

Search found 3 matches for 345

Ange Tuteur
Fri 23 Dec 2016, 10:43

Search in: Suggestions and Feedback
Topic: [SERIOUS REQUEST] Add KLM Flying Blue to the themes
Replies: 5
Views: 1154
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 :
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

( original post )

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. Wink

Using the colors you gave me, we could create something like this :
Code:
'KLM Blue' : ['#2BE', '#1AD', '#09C', '#07A', '#034']

( Note : I changed the hex to shorthand and rounded them to the nearest color ; you don't need to do this though, I only do it to make calculations easier )

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:
'Random theme' : [],
( 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:
      '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

Your new color doesn't have to be after "random theme" though, it can be anywhere. Wink
Ange Tuteur
Tue 02 Aug 2016, 14:06

Search in: Closed Issues
Topic: how can i delete theme selector
Replies: 7
Views: 986
You will need to edit the default stylesheet :
https://raw.githubusercontent.com/SethClydesdale/forumactif-edge/master/css/fa_edge.css

or the stylesheet you're currently using, and replace Danube's colors with the colors used in "Mountain Meadow". Here's a conversion chart :

Replace the colors on the left with the colors on the right.
DanubeMountain Meadow
#7AD#4D7
#69C#3C6
#58B#2B5
#369#093
#345#253
Ange Tuteur
Mon 01 Aug 2016, 21:36

Search in: Closed Issues
Topic: fix the theme color
Replies: 8
Views: 925
Re,

In the stylesheet there will be colors like :
#69C
#345
#369
#FFF

You can replace these colors with the hex color of your choice. You can use this tool to choose hex colors :
http://www.colorpicker.com/




You can also change the default color of the theme selector by going to Admin Panel > Modules > JavaScript codes management > [FA EDGE] ALL.JS ( this can be used to set a default color for the forum globally )

Find :
Code:
selected : my_getcookie('fa_theme_color') || 'Select a theme',

( "Select a theme" may differ based on your chosen language )

Replace 'Select a theme' with one of these colors :
Code:
'Persian Red'
'Chestnut Rose'
'Eunry'
'Tuscany'
'Antique Brass'
'Hokey Pokey'
'Earls Green'
'Laser'
'Pine Glade'
'Celery'
'Wild Willow'
'Atlantis'
'Apple'
'Mantis'
'De York'
'Mountain Meadow'
'Emerald'
'Shamrock'
'Turquoise'
'Downy'
'Sinbad'
'Curious Blue'
'Danube'
'Mariner'
'Governor Bay'
'Blue Marguerite'
'Blue Bell'
'Purple Heart'
'Amethyst'
'Purple'
'Cerise'
'Fuchsia Pink'
'Lilac'
'Red Violet'
'Hopbush'
'Hibiscus'

You can use the theme selector as a reference to know which name is the color you prefer.

Back to top