update of colors for metropolis v.01

pull/1/head
Rob Stupay 7 years ago
parent 803b6fe140
commit b4d6dfd1c0
  1. BIN
      assets/img/remix-redesign-white-512w_v0.1.gif
  2. 3
      src/app/editor/editor.js
  3. 1
      src/app/panels/terminal.js
  4. 13
      src/universal-dapp.js

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

@ -5,6 +5,8 @@ var yo = require('yo-yo')
var csjs = require('csjs-inject') var csjs = require('csjs-inject')
var ace = require('brace') var ace = require('brace')
require('brace/theme/tomorrow_night_blue')
var Range = ace.acequire('ace/range').Range var Range = ace.acequire('ace/range').Range
require('brace/ext/language_tools') require('brace/ext/language_tools')
require('brace/ext/searchbox') require('brace/ext/searchbox')
@ -68,7 +70,6 @@ function Editor (opts = {}) {
if (styles.appProperties.aceTheme) { if (styles.appProperties.aceTheme) {
editor.setTheme('ace/theme/' + styles.appProperties.aceTheme) editor.setTheme('ace/theme/' + styles.appProperties.aceTheme)
} }
ace.acequire('ace/ext/language_tools') ace.acequire('ace/ext/language_tools')
editor.setOptions({ editor.setOptions({
enableBasicAutocompletion: true, enableBasicAutocompletion: true,

@ -89,6 +89,7 @@ var css = csjs`
bottom : 0; bottom : 0;
right : 0; right : 0;
position : absolute; position : absolute;
z-index : 1;
background-repeat : no-repeat; background-repeat : no-repeat;
background-size : 45%; background-size : 45%;
} }

@ -139,6 +139,17 @@ var css = csjs`
outline: none; outline: none;
width: inherit; width: inherit;
} }
.call {
background-color: ${styles.colors.blueFairyDust};
border-color: ${styles.colors.blueFairyDust};
}
.constant .call {
background-color: ${styles.colors.blueMascara};
border-color: ${styles.colors.lightBlue};
width: 25%;
outline: none;
width: inherit;
}
.contractProperty input { .contractProperty input {
display: none; display: none;
} }
@ -146,7 +157,7 @@ var css = csjs`
box-sizing: border-box; box-sizing: border-box;
float: left; float: left;
align-self: center; align-self: center;
color: ${styles.colors.white}; color: ${styles.appProperties.mainText_Color};
} }
.hasArgs input { .hasArgs input {
display: block; display: block;

Loading…
Cancel
Save