From 808ea8ab061169d003485af7b352460480341cf9 Mon Sep 17 00:00:00 2001 From: Kwangsoo Shin Date: Tue, 24 Jan 2017 15:58:25 +0900 Subject: [PATCH] Update base.less for Atom 1.13.0 #5 * deprecated class. --- styles/base.less | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/styles/base.less b/styles/base.less index 3c5dcf3..f667d36 100644 --- a/styles/base.less +++ b/styles/base.less @@ -5,12 +5,12 @@ @import "ui-variables"; @import "colors"; -atom-text-editor, :host { +atom-text-editor,atom-text-editor { background-color: @base03; color: @base0; } -atom-text-editor, :host { +atom-text-editor,atom-text-editor { .invisible-character, .indent-guide { color: @base01; @@ -50,73 +50,73 @@ atom-text-editor, :host { opacity: 0.7; } -.comment { +.syntax--comment { color: @base05; font-style: italic; } -.entity { +.syntax--entity { color: @green; } -.keyword { +.syntax--keyword { color: @red; } -.any-method { +.syntax--any-method { color: @blue; } -.storage.type { +.syntax--storage.syntax--type { color: @blue; } -.storage.modifier { +.syntax--storage.syntax--modifier { color: @red; } -.constant { +.syntax--constant { color: @violet; - &.numeric, - &.boolean { + &.syntax--numeric, + &.syntax--boolean { color: @green; } } -.variable { +.syntax--variable { color: #fff; } -.delimiter, .brace { +.syntax--delimiter, .syntax--brace { color: @base0; } -.delimiter.period { +.syntax--delimiter.syntax--period { color: @green; } -.invalid.deprecated { +.syntax--invalid.syntax--deprecated { text-decoration: underline; color: @red; } -.invalid.illegal { +.syntax--invalid.syntax--illegal { color: @red; } -.string { +.syntax--string { color: @yellow; - .constant.character.escape { + .syntax--constant.syntax--character.syntax--escape { color: @red; } - &.regexp { + &.syntax--regexp { color: @blue; - .source.ruby.embedded, - .string.regexp.arbitrary-repitition { + .syntax--source.syntax--ruby.syntax--embedded, + .syntax--string.syntax--regexp.syntax--arbitrary-repitition { color: @red; } }