-
-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
571 additions
and
717 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 0 additions & 31 deletions
31
packages/components/src/org.standardnotes.theme-autobiography/Gruntfile.js
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
packages/components/src/org.standardnotes.theme-dynamic/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist |
1 change: 1 addition & 0 deletions
1
packages/components/src/org.standardnotes.theme-dynamic/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Dynamic Theme |
12 changes: 12 additions & 0 deletions
12
packages/components/src/org.standardnotes.theme-dynamic/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "@standardnotes/dynamic-theme", | ||
"version": "1.0.4", | ||
"main": "dist/dist.css", | ||
"private": true, | ||
"sn": { | ||
"main": "dist/dist.css" | ||
}, | ||
"scripts": { | ||
"build": "webpack --entry ./src/main.scss --config ./../../theme.webpack.config.js" | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
packages/components/src/org.standardnotes.theme-dynamic/src/main.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#navigation.section, | ||
.section.tags, // legacy code pre-smart tags release | ||
navigation { | ||
flex: none !important; | ||
width: 190px !important; | ||
transition: width 0.25s; | ||
} | ||
|
||
#navigation.section:hover, | ||
.section.tags:hover, // legacy code pre-smart tags release | ||
navigation:hover { | ||
flex: initial; | ||
width: 250px !important; | ||
transition: width 0.25s; | ||
} | ||
|
||
.section.notes, | ||
notes-view { | ||
flex: none !important; | ||
width: 270px !important; | ||
transition: width 0.25s; | ||
} | ||
|
||
.section.notes:hover, | ||
notes-view:hover { | ||
flex: initial; | ||
width: 420px !important; | ||
transition: width 0.25s; | ||
} |
1 change: 1 addition & 0 deletions
1
packages/components/src/org.standardnotes.theme-focus/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist |
1 change: 1 addition & 0 deletions
1
packages/components/src/org.standardnotes.theme-focus/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Focus Theme |
12 changes: 12 additions & 0 deletions
12
packages/components/src/org.standardnotes.theme-focus/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "@standardnotes/focus-theme", | ||
"version": "1.2.9", | ||
"main": "dist/dist.css", | ||
"private": true, | ||
"sn": { | ||
"main": "dist/dist.css" | ||
}, | ||
"scripts": { | ||
"build": "webpack --entry ./src/main.scss --config ./../../theme.webpack.config.js" | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
packages/components/src/org.standardnotes.theme-focus/src/main.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
:root { | ||
|
||
--foreground-color: #eeeeee; | ||
--background-color: #0f1011; | ||
--highlight-color: #a464c2; | ||
--border-color: #0f1011; | ||
|
||
--sn-component-foreground-color: var(--foreground-color); | ||
--sn-component-background-color: transparent; | ||
--sn-component-foreground-highlight-color: var(--highlight-color); | ||
--sn-component-outer-border-color: transparent; | ||
--sn-component-inner-border-color: var(--foreground-color); | ||
|
||
// StyleKit Vars | ||
|
||
--sn-stylekit-shadow-color: #000000; | ||
|
||
--sn-stylekit-info-color: var(--highlight-color); | ||
--sn-stylekit-info-contrast-color: var(--foreground-color); | ||
|
||
--sn-stylekit-neutral-color: #7c7c7c; | ||
--sn-stylekit-neutral-contrast-color: #ffffff; | ||
|
||
--sn-stylekit-success-color: #2B9612; | ||
--sn-stylekit-success-contrast-color: #ffffff; | ||
|
||
--sn-stylekit-warning-color: #f6a200; | ||
--sn-stylekit-warning-contrast-color: #ffffff; | ||
|
||
--sn-stylekit-danger-color: #F80324; | ||
--sn-stylekit-danger-contrast-color: #ffffff; | ||
|
||
--sn-stylekit-editor-background-color: var(--sn-stylekit-background-color); | ||
--sn-stylekit-editor-foreground-color: var(--sn-stylekit-foreground-color); | ||
|
||
--sn-stylekit-background-color: var(--background-color); | ||
--sn-stylekit-foreground-color: var(--foreground-color); | ||
--sn-stylekit-border-color: #000000; | ||
|
||
--sn-stylekit-contrast-background-color: #000000; | ||
--sn-stylekit-contrast-foreground-color: #ffffff; | ||
--sn-stylekit-contrast-border-color: #000000; | ||
|
||
--sn-stylekit-secondary-background-color: #0f1011; | ||
--sn-stylekit-secondary-foreground-color: #ffffff; | ||
--sn-stylekit-secondary-border-color: #000000; | ||
|
||
--sn-stylekit-secondary-contrast-background-color: #000000; | ||
--sn-stylekit-secondary-contrast-foreground-color: #ffffff; | ||
--sn-stylekit-secondary-contrast-border-color: #ffffff; | ||
|
||
--sn-stylekit-paragraph-text-color: #ffffff; | ||
|
||
--sn-desktop-titlebar-bg-color: var(--background-color); | ||
--sn-desktop-titlebar-border-color: var(--border-color); | ||
--sn-desktop-titlebar-ui-color: var(--foreground-color); | ||
--sn-desktop-titlebar-ui-hover-color: var(--highlight-color); | ||
|
||
--sn-stylekit-scrollbar-track-border-color: var(--border-color); | ||
--sn-stylekit-scrollbar-thumb-color: var(--sn-stylekit-info-color); | ||
|
||
--sn-stylekit-menu-border: 1px solid #424242; | ||
|
||
--sn-stylekit-passive-color-0: #999999; | ||
--sn-stylekit-passive-color-3: #28292b; | ||
--sn-stylekit-passive-color-4: #1c1d1e; | ||
--sn-stylekit-passive-color-5: #1d1f20; | ||
} |
1 change: 1 addition & 0 deletions
1
packages/components/src/org.standardnotes.theme-futura/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist |
1 change: 1 addition & 0 deletions
1
packages/components/src/org.standardnotes.theme-futura/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Futura Theme |
12 changes: 12 additions & 0 deletions
12
packages/components/src/org.standardnotes.theme-futura/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "@standardnotes/futura-theme", | ||
"version": "1.2.9", | ||
"main": "dist/dist.css", | ||
"private": true, | ||
"sn": { | ||
"main": "dist/dist.css" | ||
}, | ||
"scripts": { | ||
"build": "webpack --entry ./src/main.scss --config ./../../theme.webpack.config.js" | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
packages/components/src/org.standardnotes.theme-futura/src/main.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
:root { | ||
|
||
--foreground-color: #a9aabe; | ||
--background-color: #20202b; | ||
--highlight-color: #fca429; | ||
--border-color: #20222c; | ||
|
||
// StyleKit Vars | ||
--sn-stylekit-shadow-color: var(--border-color); | ||
|
||
--sn-stylekit-info-color: var(--highlight-color); | ||
--sn-stylekit-info-contrast-color: var(--background-color); | ||
|
||
--sn-stylekit-neutral-color: #7c7c7c; | ||
--sn-stylekit-neutral-contrast-color: #ffffff; | ||
|
||
--sn-stylekit-success-color: #2B9612; | ||
--sn-stylekit-success-contrast-color: #ffffff; | ||
|
||
--sn-stylekit-warning-color: #f6a200; | ||
--sn-stylekit-warning-contrast-color: #ffffff; | ||
|
||
--sn-stylekit-danger-color: #F80324; | ||
--sn-stylekit-danger-contrast-color: #ffffff; | ||
|
||
--sn-stylekit-editor-background-color: var(--sn-stylekit-background-color); | ||
--sn-stylekit-editor-foreground-color: var(--sn-stylekit-foreground-color); | ||
|
||
--sn-stylekit-background-color: #20202b; | ||
--sn-stylekit-foreground-color: #a9aabe; | ||
--sn-stylekit-border-color: #0f1116; | ||
|
||
--sn-stylekit-contrast-background-color: #272734; | ||
--sn-stylekit-contrast-foreground-color: #a9aabe; | ||
--sn-stylekit-contrast-border-color: #0f1116; | ||
|
||
--sn-stylekit-secondary-background-color: #20202b; | ||
--sn-stylekit-secondary-foreground-color: #a9aabe; | ||
--sn-stylekit-secondary-border-color: #20222c; | ||
|
||
--sn-stylekit-secondary-contrast-background-color: #272734; | ||
--sn-stylekit-secondary-contrast-foreground-color: #a9aabe; | ||
--sn-stylekit-secondary-contrast-border-color: #272734; | ||
|
||
--sn-stylekit-paragraph-text-color: var(--foreground-color); | ||
|
||
--sn-stylekit-scrollbar-track-border-color: var(--border-color); | ||
--sn-stylekit-scrollbar-thumb-color: var(--sn-stylekit-info-color); | ||
|
||
--sn-desktop-titlebar-bg-color: var(--background-color); | ||
--sn-desktop-titlebar-border-color: var(--border-color); | ||
--sn-desktop-titlebar-ui-color: var(--foreground-color); | ||
--sn-desktop-titlebar-ui-hover-color: var(--highlight-color); | ||
|
||
--sn-stylekit-menu-border: 1px solid #434b60; | ||
|
||
--sn-stylekit-passive-color-0: #a4a5b3; | ||
--sn-stylekit-passive-color-3: #3a3a48; | ||
--sn-stylekit-passive-color-4: #2c2c39; | ||
--sn-stylekit-passive-color-4-opacity-variant: #292937; | ||
--sn-stylekit-passive-color-5: #2e2e3e; | ||
} |
1 change: 1 addition & 0 deletions
1
packages/components/src/org.standardnotes.theme-midnight/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist |
12 changes: 12 additions & 0 deletions
12
packages/components/src/org.standardnotes.theme-midnight/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "@standardnotes/midnight-theme", | ||
"version": "1.2.8", | ||
"main": "dist/dist.css", | ||
"private": true, | ||
"sn": { | ||
"main": "dist/dist.css" | ||
}, | ||
"scripts": { | ||
"build": "webpack --entry ./src/main.scss --config ./../../theme.webpack.config.js" | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
packages/components/src/org.standardnotes.theme-midnight/src/main.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
:root { | ||
--primary-bg-color: #292937; | ||
--secondary-bg-color: #313142; | ||
--editor-bg-color: #202020; | ||
--border-color: #13131a; | ||
--ui-text-color: #d8d8d8; | ||
|
||
--sn-stylekit-info-color: #4CA3FF; | ||
--sn-stylekit-info-contrast-color: white; | ||
|
||
--sn-stylekit-neutral-color: #7c7c7c; | ||
--sn-stylekit-neutral-contrast-color: white; | ||
|
||
--sn-stylekit-success-color: #01BE79; | ||
--sn-stylekit-success-contrast-color: white; | ||
|
||
--sn-stylekit-warning-color: #f6a200; | ||
--sn-stylekit-warning-contrast-color: white; | ||
|
||
--sn-stylekit-danger-color: #F80324; | ||
--sn-stylekit-danger-contrast-color: white; | ||
|
||
--sn-desktop-titlebar-bg-color: var(--primary-bg-color); | ||
--sn-desktop-titlebar-border-color: var(--border-color); | ||
--sn-desktop-titlebar-ui-color: var(--ui-text-color); | ||
--sn-desktop-titlebar-ui-hover-color: var(--sn-stylekit-info-color); | ||
|
||
// StyleKit Vars | ||
--sn-stylekit-shadow-color: #20202b; | ||
|
||
--sn-stylekit-background-color: #20202b; | ||
--sn-stylekit-border-color: var(--border-color); | ||
--sn-stylekit-foreground-color: var(--ui-text-color); | ||
|
||
--sn-stylekit-contrast-background-color: var(--secondary-bg-color); | ||
--sn-stylekit-contrast-foreground-color: var(--ui-text-color); | ||
--sn-stylekit-contrast-border-color: var(--border-color); | ||
|
||
--sn-stylekit-secondary-background-color: #292937; | ||
--sn-stylekit-secondary-foreground-color: var(--ui-text-color); | ||
--sn-stylekit-secondary-border-color: var(--border-color); | ||
|
||
--sn-stylekit-secondary-contrast-background-color: #45445a; | ||
--sn-stylekit-secondary-contrast-foreground-color: var(--ui-text-color); | ||
--sn-stylekit-secondary-contrast-border-color: var(--border-color); | ||
|
||
--sn-stylekit-editor-background-color: var(--sn-stylekit-background-color); | ||
--sn-stylekit-editor-foreground-color: var(--sn-stylekit-foreground-color); | ||
|
||
--sn-stylekit-paragraph-text-color: var(--ui-text-color); | ||
|
||
--sn-stylekit-scrollbar-track-border-color: var(--border-color); | ||
--sn-stylekit-scrollbar-thumb-color: var(--sn-stylekit-info-color); | ||
|
||
--sn-stylekit-menu-border: 1px solid #494965; | ||
|
||
--sn-stylekit-passive-color-0: #94979e; | ||
--sn-stylekit-passive-color-3: #2c2c39; | ||
--sn-stylekit-passive-color-4: #313142; | ||
--sn-stylekit-passive-color-4-opacity-variant: #292937; | ||
--sn-stylekit-passive-color-5: #313142; | ||
} |
1 change: 1 addition & 0 deletions
1
packages/components/src/org.standardnotes.theme-solarized-dark/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist |
1 change: 1 addition & 0 deletions
1
packages/components/src/org.standardnotes.theme-solarized-dark/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Solarized Dark Theme |
12 changes: 12 additions & 0 deletions
12
packages/components/src/org.standardnotes.theme-solarized-dark/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "@standardnotes/solarized-dark-theme", | ||
"version": "1.2.7", | ||
"main": "dist/dist.css", | ||
"private": true, | ||
"sn": { | ||
"main": "dist/dist.css" | ||
}, | ||
"scripts": { | ||
"build": "webpack --entry ./src/main.scss --config ./../../theme.webpack.config.js" | ||
} | ||
} |
Oops, something went wrong.