Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Commit 7347542

Browse files
committed
changes... so many changes....
1 parent 26e93c9 commit 7347542

File tree

12 files changed

+59
-41
lines changed

12 files changed

+59
-41
lines changed

.vscode/tasks.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"version": "0.1.0",
33
"command": "bash",
44
"isShellCommand": false,
5-
"args": ["build.sh"],
6-
"showOutput": "silent"
5+
"args": [ "build.sh" ],
6+
"showOutput": "silent",
7+
"echoCommand": false
78
}

core/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module KaryGraph {
1818
//
1919

2020
/** Color of the graph */
21-
export const GraphColor = 'black';
21+
export const GraphColor = '#171717';
2222

2323
/** Color of the selected parts of the graph */
2424
export const GraphSelectColor = '#A200FF';

less.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lessc sheets/ui.less _compiled/style.css

loc.sh

-24
This file was deleted.

resources/toolbar-back.png

133 Bytes
Loading

sheets/globals.less

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
// ─── GLOBALS ────────────────────────────────────────────────────────────────────
99
//
1010

11-
@color-1: #eee;
11+
@color-1: #ECECEC;
1212
@color-2: white;
13-
@color-3: black;
13+
@color-3: #141414;
1414
@color-4: #424242;
1515

1616
@font-sans-serif: 'Avenir';
@@ -38,6 +38,6 @@
3838

3939
@toolbar-padding-top: 10px;
4040

41-
@notebook-blue-color: #007AE0;
41+
@notebook-blue-color: #2A75C0;
4242

4343
// ────────────────────────────────────────────────────────────────────────────────

sheets/libs/kary-scheme.less

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
2+
//
3+
// Kary Foundation's Brand Color Scheme
4+
// Copyright 2016 Kary Foundation, Inc - All Rights Reserved.
5+
//
6+
// IMPORTANT
7+
// Premission to use this color scheme is ONLY granted for use within Kary
8+
// Foundation Branded Projects. As a brand property you get no right to use
9+
// this theme with any other project.
10+
//
11+
12+
//
13+
// ─── KARY FOUNDATION LIGHT ──────────────────────────────────────────────────────
14+
//
15+
16+
@kary-light-orange: #B36D00;
17+
@kary-light-red: #C03207;
18+
@kary-light-magenta: #9F0D97;
19+
@kary-light-blue: #2A75C0;
20+
@kary-light-green: #317410;
21+
22+
@kary-light-foreground: #141414;
23+
@kary-light-comment: #BBB7B5;
24+
@kary-light-background: #F5F5F5;
25+
26+
@kary-light-selection: #C2E8F4;
27+
@kary-light-highlights: #ECECEC;
28+
29+
//
30+
// ─── KARY FOUNDATION DARK ───────────────────────────────────────────────────────
31+
//
32+
33+
@kary-dark-orange: #B48337;
34+
@kary-dark-red: #D17051;
35+
@kary-dark-magenta: #A47097;
36+
@kary-dark-blue: #668BB7;
37+
@kary-dark-green: #6F985A;
38+
39+
@kary-dark-foreground: #C1C1C1;
40+
@kary-dark-comment: #5D5D5D;
41+
@kary-dark-background: #141414;
42+
43+
@kary-dark-selcetion: #1B424E;
44+
@kary-dark-highlights: #1B1B1B;
45+
46+
// ────────────────────────────────────────────────────────────────────────────────

sheets/ui.less

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
@import 'sheets/views/graph';
1515
@import 'sheets/views/toolbar';
1616

17-
@import 'sheets/views/notebook/inspector';
18-
@import 'sheets/views/notebook/prompt';
19-
@import 'sheets/views/notebook/say';
17+
@import 'sheets/views/inspector/inspector';
18+
@import 'sheets/views/inspector/prompt';
19+
@import 'sheets/views/inspector/say';
2020

2121
// ────────────────────────────────────────────────────────────────────────────────
2222

sheets/views/notebook/inspector.less renamed to sheets/views/inspector/inspector.less

+2-8
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,18 @@
1414
//
1515
// ─── SCRIPT EDITOR ──────────────────────────────────────────────────────────────
1616
//
17-
17+
1818
#inspector {
19-
width: @inspector-width - 2 * @inspector-width-padding;
19+
width: @inspector-width;
2020
height: ~'calc( 100vh - 50px )';
2121
float: left;
22-
padding: @inspector-width-padding;
23-
padding-top: 0;
2422
background-color: #ddd;
2523
}
2624

2725
.inspector-section {
28-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
29-
border-radius: @inspector-border-radius;
3026
}
3127

3228
.inspector-section-title {
33-
margin-top: @inspector-width-padding;
34-
background-color: white;
3529
border-top-left-radius: @inspector-border-radius;
3630
border-top-right-radius: @inspector-border-radius;
3731
border-bottom: 2px solid #eee;
File renamed without changes.

0 commit comments

Comments
 (0)