Change default theme from blue to purple

This commit is contained in:
Bruno Lemos
2019-02-20 07:46:52 -03:00
parent 8aa3e97107
commit d29ffc8196
7 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
import { ThemePair } from '../types'
export const COLUMNS_LIMIT = 20
export const DEFAULT_DARK_THEME = 'dark-blue'
export const DEFAULT_DARK_THEME = 'dark-purple'
export const DEFAULT_LIGHT_THEME = 'light-white'
export const DEFAULT_PAGINATION_PER_PAGE = 10
export const DEFAULT_THEME_PAIR: ThemePair = { id: 'auto', color: '' }

View File

@@ -99,7 +99,7 @@ function getBrowserWindowOptions() {
const options: Electron.BrowserWindowConstructorOptions = {
minWidth: 320,
minHeight: 450,
backgroundColor: '#242b38',
backgroundColor: '#313142',
darkTheme: true,
icon:
process.platform === 'darwin' || process.platform === 'win32'

View File

@@ -7,8 +7,8 @@
<color name="brand_background">#49d3b4</color>
<color name="brand_foreground">#141C26</color>
<color name="background_color_dark">#242B38</color>
<color name="foreground_color_dark">#E9ECF1</color>
<color name="background_color_dark">#313142</color>
<color name="foreground_color_dark">#F8F8FA</color>
<color name="background_color_light">#FBFBFB</color>
<color name="foreground_color_light">#3C3C3C</color>

View File

@@ -29,8 +29,8 @@
launchOptions:launchOptions];
// #242b38 (dark-blue)
rootView.backgroundColor = [UIColor colorWithRed:0.14 green:0.17 blue:0.22 alpha:1.0];
// #313142 (dark-purple)
rootView.backgroundColor = [UIColor colorWithRed:0.19 green:0.19 blue:0.26 alpha:1.0];
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
UIViewController *rootViewController = [UIViewController new];

View File

@@ -33,8 +33,8 @@
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="DevHub">
<meta name="apple-mobile-web-app-title" content="DevHub">
<meta name="theme-color" content="#242b38">
<meta name="msapplication-navbutton-color" content="#242b38">
<meta name="theme-color" content="#313142">
<meta name="msapplication-navbutton-color" content="#313142">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="msapplication-starturl" content="https://devhubapp.com/">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no">

View File

@@ -14,7 +14,7 @@ body {
display: flex;
align-content: center;
align-items: center;
background-color: #242b38;
background-color: #313142;
text-align: center;
color: #fff;
font-family: sans-serif;

View File

@@ -23,7 +23,7 @@ html {
}
body {
background-color: #242b38;
background-color: #313142;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;