Advertisement
Guest User

Untitled

a guest
Jan 10th, 2012
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 7.62 KB | None | 0 0
  1. $color_received = $_COOKIE['color']; //trying to find the cookie for theme color
  2. if($color_received == NULL){
  3.     $color_received = 'gray(default)';
  4.     setcookie("color", 'gray(default)', time()+180000);
  5. }
  6.  
  7.  
  8.  
  9. switch ($color_received){
  10.     case "gray(default)":
  11.         $hyperlinkColor = "#0E387C"; //html color number
  12.         $hyperlinkHover = "#DFDFDF"; //html color number
  13.    
  14.         $table_border ="#1b1b1b"; //html color number
  15.    
  16.         $table_main_BG = "#2c2c2c"; //html color number
  17.    
  18.         $corner_logo = "main_images/Dlolpics-Logo.png"; //url
  19.         $home_button ="main_images/home-button.png"; //url
  20.         $contact_button ="main_images/contact-button.png"; //url
  21.         $sort_newest_button="main_images/newest-button.png"; //url
  22.    
  23.         $main_body_BG="main_images/picBackground.png"; //url (just need the name.png)
  24.        
  25.         $facebook_scheme="dark"; //FB value (dark/light)
  26.     break;
  27.    
  28.    
  29.     case "red":
  30.         $hyperlinkColor = "#7A4444"; //html color number
  31.         $hyperlinkHover = "#C47A7A"; //html color number
  32.    
  33.         $table_border = "#3B0404"; //html color number
  34.    
  35.         $table_main_BG = "#971F1F"; //html color number
  36.    
  37.         $corner_logo = "main_images/red/Dlolpics-Logo.png"; //url
  38.         $home_button ="main_images/red/home-button.png"; //url
  39.         $contact_button ="main_images/red/contact-button.png"; //url
  40.         $sort_newest_button="main_images/red/newest-button.png"; //url
  41.    
  42.         $main_body_BG="main_images/red/picBackground.png"; //url
  43.        
  44.         $facebook_scheme="dark"; //FB value (dark/light)
  45.     break;
  46.    
  47.    
  48.     case "brown":
  49.         $hyperlinkColor = "#3F2407"; //html color number
  50.         $hyperlinkHover = "#A98A69"; //html color number
  51.    
  52.         $table_border = "#3D2000"; //html color number
  53.    
  54.         $table_main_BG = "#753C00"; //html color number
  55.    
  56.         $corner_logo = "main_images/brown/Dlolpics-Logo.png"; //url
  57.         $home_button ="main_images/brown/home-button.png"; //url
  58.         $contact_button ="main_images/brown/contact-button.png"; //url
  59.         $sort_newest_button="main_images/brown/newest-button.png"; //url
  60.    
  61.         $main_body_BG="main_images/brown/picBackground.png"; //url
  62.        
  63.         $facebook_scheme="dark"; //FB value (dark/light)
  64.     break;
  65.    
  66.    
  67.     case "dark_blue":
  68.         $hyperlinkColor = "#0E0F43"; //html color number
  69.         $hyperlinkHover = "#5051A9"; //html color number
  70.    
  71.         $table_border = "#000264"; //html color number
  72.    
  73.         $table_main_BG = "#0D10CF"; //html color number
  74.    
  75.         $corner_logo = "main_images/dark_blue/Dlolpics-Logo.png"; //url
  76.         $home_button ="main_images/dark_blue/home-button.png"; //url
  77.         $contact_button ="main_images/dark_blue/contact-button.png"; //url
  78.         $sort_newest_button="main_images/dark_blue/newest-button.png"; //url
  79.    
  80.         $main_body_BG="main_images/dark_blue/picBackground.png"; //url
  81.        
  82.         $facebook_scheme="dark"; //FB value (dark/light)
  83.     break;
  84.    
  85.    
  86.     case "dark_green":
  87.         $hyperlinkColor = "#14A606"; //html color number
  88.         $hyperlinkHover = "#4BCE17"; //html color number
  89.    
  90.         $table_border = "#032900"; //html color number
  91.    
  92.         $table_main_BG = "#0A5403"; //html color number
  93.    
  94.         $corner_logo = "main_images/dark_green/Dlolpics-Logo.png"; //url
  95.         $home_button ="main_images/dark_green/home-button.png"; //url
  96.         $contact_button ="main_images/dark_green/contact-button.png"; //url
  97.         $sort_newest_button="main_images/dark_green/newest-button.png"; //url
  98.    
  99.         $main_body_BG="main_images/dark_green/picBackground.png"; //url
  100.        
  101.         $facebook_scheme="dark"; //FB value (dark/light)
  102.     break;
  103.    
  104.    
  105.     case "light_blue":
  106.         $hyperlinkColor = "419799"; //html color number
  107.         $hyperlinkHover = "215A5B"; //html color number
  108.    
  109.         $table_border = "05888B"; //html color number
  110.    
  111.         $table_main_BG = "00C2C5"; //html color number
  112.    
  113.         $corner_logo = "main_images/light_blue/Dlolpics-Logo.png"; //url
  114.         $home_button ="main_images/light_blue/home-button.png"; //url
  115.         $contact_button ="main_images/light_blue/contact-button.png"; //url
  116.         $sort_newest_button="main_images/light_blue/newest-button.png"; //url
  117.    
  118.         $main_body_BG="main_images/light_blue/picBackground.png"; //url
  119.        
  120.         $facebook_scheme="light"; //FB value (dark/light)
  121.     break;
  122.    
  123.    
  124.     case"light_green":
  125.         $hyperlinkColor = "#424E44"; //html color number
  126.         $hyperlinkHover = "#5B8161"; //html color number
  127.    
  128.         $table_border = "#07861A"; //html color number
  129.    
  130.         $table_main_BG = "#25C73D"; //html color number
  131.    
  132.         $corner_logo = "main_images/light_green/Dlolpics-Logo.png"; //url
  133.         $home_button ="main_images/light_green/home-button.png"; //url
  134.         $contact_button ="main_images/light_green/contact-button.png"; //url
  135.         $sort_newest_button="main_images/light_green/newest-button.png"; //url
  136.    
  137.         $main_body_BG="main_images/light_green/picBackground.png"; //url
  138.        
  139.         $facebook_scheme="light"; //FB value (dark/light)
  140.     break;
  141.    
  142.    
  143.     case"orange":
  144.         $hyperlinkColor = "C1732A"; //html color number
  145.         $hyperlinkHover = "EC9A4D"; //html color number
  146.    
  147.         $table_border = "A34F00"; //html color number
  148.    
  149.         $table_main_BG = "D86C06"; //html color number
  150.    
  151.         $corner_logo = "main_images/orange/Dlolpics-Logo.png"; //url
  152.         $home_button ="main_images/orange/home-button.png"; //url
  153.         $contact_button ="main_images/orange/contact-button.png"; //url
  154.         $sort_newest_button="main_images/orange/newest-button.png"; //url
  155.    
  156.         $main_body_BG="main_images/orange/picBackground.png"; //url
  157.        
  158.         $facebook_scheme="dark"; //FB value (dark/light)
  159.     break;
  160.    
  161.    
  162.     case"pink":
  163.         $hyperlinkColor = "63013F"; //html color number
  164.         $hyperlinkHover = "7B0750"; //html color number
  165.    
  166.         $table_border = "A10066"; //html color number
  167.    
  168.         $table_main_BG = "D50489"; //html color number
  169.    
  170.         $corner_logo = "main_images/pink/Dlolpics-Logo.png"; //url
  171.         $home_button ="main_images/pink/home-button.png"; //url
  172.         $contact_button ="main_images/pink/contact-button.png"; //url
  173.         $sort_newest_button="main_images/pink/newest-button.png"; //url
  174.    
  175.         $main_body_BG="main_images/pink/picBackground.png"; //url
  176.        
  177.         $facebook_scheme="dark"; //FB value (dark/light)
  178.     break;
  179.    
  180.    
  181.     case"purple":
  182.         $hyperlinkColor = "6E0173"; //html color number
  183.         $hyperlinkHover = "B003BA"; //html color number
  184.    
  185.         $table_border = "6E0173"; //html color number
  186.    
  187.         $table_main_BG = "B003BA"; //html color number
  188.    
  189.         $corner_logo = "main_images/purple/Dlolpics-Logo.png"; //url
  190.         $home_button ="main_images/purple/home-button.png"; //url
  191.         $contact_button ="main_images/purple/contact-button.png"; //url
  192.         $sort_newest_button="main_images/purple/newest-button.png"; //url
  193.    
  194.         $main_body_BG="main_images/purple/picBackground.png"; //url
  195.        
  196.         $facebook_scheme="dark"; //FB value (dark/light)
  197.     break;
  198.    
  199.    
  200.     case"white":
  201.         $hyperlinkColor = "B2B2B2"; //html color number
  202.         $hyperlinkHover = "D4D4D4"; //html color number
  203.    
  204.         $table_border = "B2B2B2"; //html color number
  205.    
  206.         $table_main_BG = "D4D4D4"; //html color number
  207.    
  208.         $corner_logo = "main_images/white/Dlolpics-Logo.png"; //url
  209.         $home_button ="main_images/white/home-button.png"; //url
  210.         $contact_button ="main_images/white/contact-button.png"; //url
  211.         $sort_newest_button="main_images/white/newest-button.png"; //url
  212.    
  213.         $main_body_BG="main_images/white/picButton.png"; //url
  214.        
  215.         $facebook_scheme="light"; //FB value (dark/light)
  216.     break;
  217.    
  218.    
  219.     case"yellow":
  220.         $hyperlinkColor = "818601"; //html color number
  221.         $hyperlinkHover = "C6CD04"; //html color number
  222.    
  223.         $table_border = "818601"; //html color number
  224.    
  225.         $table_main_BG = "C6CD04"; //html color number
  226.    
  227.         $corner_logo = "main_images/yellow/Dlolpics-Logo.png"; //url
  228.         $home_button ="main_images/yellow/home-button.png"; //url
  229.         $contact_button ="main_images/yellow/contact-button.png"; //url
  230.         $sort_newest_button="main_images/yellow/newest-button.png"; //url
  231.    
  232.         $main_body_BG="main_images/yellow/picBackground.png"; //url
  233.        
  234.         $facebook_scheme="dark"; //FB value (dark/light)
  235.     break;
  236.    
  237. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement