Initial add

This commit is contained in:
John Alanbrook 2024-03-06 13:20:32 -06:00
commit 9ff727047a
7 changed files with 64 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.DS_Store

3
CHANGELOG.md Normal file
View file

@ -0,0 +1,3 @@
## Version 1.0
Initial release

1
README.md Normal file
View file

@ -0,0 +1 @@
**acme** is a tribute of the plan9 acme text editor.

51
Themes/acme.css Normal file
View file

@ -0,0 +1,51 @@
meta {
-theme-interface-style: light;
-theme-vibrancy: none;
-theme-accent-color: false;
}
/*
* Window styles
*/
meta.window {
background-color:#eaffff;
border-color: #8888CC;
}
/*
* Document styles
*/
meta.document {
background-color: #ffffea;
border-color: #99994C;
}
/* Text */
meta.text {
color: #000000;
}
meta.text.invisible {
color: hsla(210, 100%, 90%, 0.15);
}
meta.text.selected {
color:#aa0000;
}
/* Cursor */
meta.cursor {
background-color: #aa0000;
}
/* Indentation Guides */
meta.indentguide {
border-color: #8888cc;
}
/* Gutter */
meta.gutter {
color: #8888cc;
}
meta.gutter.selected {
background-color: #eeee9e;
color: #99994C;
}

BIN
extension.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

8
extension.json Normal file
View file

@ -0,0 +1,8 @@
{
"identifier": "org.acme",
"name": "acme theme",
"organization": "Pockle World",
"description": "Tribute to the plan9 acme editor",
"version": "1.0",
"categories": ["themes"]
}

BIN
extension.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB