-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolors.php
More file actions
14 lines (14 loc) · 826 Bytes
/
colors.php
File metadata and controls
14 lines (14 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
//dark //default
$colorBackground = $theme=='dark' ? '#303030' : '#FAFAFA';
$colorFont = $theme=='dark' ? '#aeaeae' : '#000000';
$colorBlue = $theme=='dark' ? '#160859' : '#66CCFF';
$colorGreen = $theme=='dark' ? '#16430f' : '#66CC66';
$colorYellow = $theme=='dark' ? '#806000' : '#FFFF99';
$colorRed = $theme=='dark' ? '#5b0f02' : '#FF6666';
$colorQuest = $theme=='dark' ? '#50345f' : '#FFCCFF';
$colorNoQuest = $theme=='dark' ? '#4d4650' : '#dcdcdc';
$colorNav = $theme=='dark' ? '#a494ac' : '#E6E6E6';
$colorLink = $theme=='dark' ? '#000000' : '#0000EE';
$colorLinkHover = $theme=='dark' ? '#9b111e' : '#FF0000';
$colorLinkActive = $theme=='dark' ? '#9b111e' : '#FF0000';