From a96c52b21e7e590bbdd70b80896780a446fa2e8b Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Mon, 13 Dec 2021 02:07:04 +0100 Subject: build: separate module for frontend This allows us to simplify the webpack configuration and the gradle build scripts. --- subprojects/frontend/src/themes.scss | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 subprojects/frontend/src/themes.scss (limited to 'subprojects/frontend/src/themes.scss') diff --git a/subprojects/frontend/src/themes.scss b/subprojects/frontend/src/themes.scss new file mode 100644 index 00000000..a30f1de3 --- /dev/null +++ b/subprojects/frontend/src/themes.scss @@ -0,0 +1,38 @@ +$themes: ( + 'dark': ( + 'foreground': #abb2bf, + 'foregroundHighlight': #eeffff, + 'background': #212121, + 'primary': #56b6c2, + 'secondary': #ff5370, + 'keyword': #56b6c2, + 'predicate': #d6e9ff, + 'variable': #c8ae9d, + 'uniqueNode': #d6e9ff, + 'number': #6e88a6, + 'delimiter': #707787, + 'comment': #5c6370, + 'cursor': #56b6c2, + 'selection': #3e4452, + 'currentLine': rgba(0, 0, 0, 0.2), + 'lineNumber': #5c6370, + ), + 'light': ( + 'foreground': #abb2bf, + 'background': #282c34, + 'paper': #21252b, + 'primary': #56b6c2, + 'secondary': #ff5370, + 'keyword': #56b6c2, + 'predicate': #d6e9ff, + 'variable': #c8ae9d, + 'uniqueNode': #d6e9ff, + 'number': #6e88a6, + 'delimiter': #56606d, + 'comment': #55606d, + 'cursor': #f3efe7, + 'selection': #3e4452, + 'currentLine': #2c323c, + 'lineNumber': #5c6370, + ), +); -- cgit v1.2.3-70-g09d2