diff --git a/assets/img/remix-redesign-white-512w_v0.1.gif b/assets/img/remix-redesign-white-512w_v0.1.gif new file mode 100644 index 0000000000..2bcbba86eb Binary files /dev/null and b/assets/img/remix-redesign-white-512w_v0.1.gif differ diff --git a/src/app/editor/editor.js b/src/app/editor/editor.js index d8c2b69e9c..58039a3220 100644 --- a/src/app/editor/editor.js +++ b/src/app/editor/editor.js @@ -5,6 +5,8 @@ var yo = require('yo-yo') var csjs = require('csjs-inject') var ace = require('brace') +require('brace/theme/tomorrow_night_blue') + var Range = ace.acequire('ace/range').Range require('brace/ext/language_tools') require('brace/ext/searchbox') @@ -68,7 +70,6 @@ function Editor (opts = {}) { if (styles.appProperties.aceTheme) { editor.setTheme('ace/theme/' + styles.appProperties.aceTheme) } - ace.acequire('ace/ext/language_tools') editor.setOptions({ enableBasicAutocompletion: true, diff --git a/src/app/panels/terminal.js b/src/app/panels/terminal.js index b8708b7572..8f3ab7777d 100644 --- a/src/app/panels/terminal.js +++ b/src/app/panels/terminal.js @@ -89,6 +89,7 @@ var css = csjs` bottom : 0; right : 0; position : absolute; + z-index : 1; background-repeat : no-repeat; background-size : 45%; } diff --git a/src/universal-dapp.js b/src/universal-dapp.js index 5b1179073c..11e5540f19 100644 --- a/src/universal-dapp.js +++ b/src/universal-dapp.js @@ -139,6 +139,17 @@ var css = csjs` outline: none; 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 { display: none; } @@ -146,7 +157,7 @@ var css = csjs` box-sizing: border-box; float: left; align-self: center; - color: ${styles.colors.white}; + color: ${styles.appProperties.mainText_Color}; } .hasArgs input { display: block;