Commit b4d6dfd1 authored by Rob Stupay's avatar Rob Stupay

update of colors for metropolis v.01

parent 803b6fe1
...@@ -5,6 +5,8 @@ var yo = require('yo-yo') ...@@ -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 = {}) { ...@@ -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` ...@@ -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` ...@@ -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` ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment