Skip to content

Commit 27c132a

Browse files
committed
add screenshot and all vscode needed files
1 parent 80c05e0 commit 27c132a

File tree

6 files changed

+58
-30
lines changed

6 files changed

+58
-30
lines changed

.vscode/launch.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// A launch configuration that launches the extension inside a new window
2+
{
3+
"version": "0.1.0",
4+
"configurations": [
5+
{
6+
"name": "Launch Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
11+
}
12+
]
13+
}

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
All notable changes to the "vscode-theme-dark-atom-dark-green-cursor" extension will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/).
5+
6+
## [Unreleased]
7+
- Fork of Sublime Theme https://github.com/therealmarv/Atom-Dark.tmTheme
8+
9+
## [0.9.0] - 2017-02-03
10+
### Changed
11+
- Structure theme to VSCode theme conventions

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
The MIT License (MIT)
22

33
Copyright (c) 2014 Jason Truluck
4+
Copyright (c) 2017 Marvin Reimer
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

README.md

+6-30
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,11 @@
1-
Atom-Dark.tmTheme
2-
=================
1+
# Dark Atom Dark Green Cursor
32

4-
#### Changes
3+
This is a fork of my [Dark Atom Sublime 3 Theme](https://github.com/therealmarv/Atom-Dark.tmTheme).
54

6-
Added two more themes **"Atom Dark Grey Text"** and **"Atom Dark Grey Text Green Cursor"** which have a closer text color match to original Atom Dark UI. The last one only makes the cursor deep green. [MR]
5+
I compared it with original Atom and HTML, JS and Python code and it either matches or comes pretty close.
76

8-
---
7+
The big eyecandy is the **GREEN** cursor :)
98

10-
[Atom Dark UI](https://github.com/atom/atom-dark-ui) Port to .tmTheme for Sublime Text
9+
![Screenshot](https://raw.githubusercontent.com/therealmarv/vscode-theme-dark-atom-dark-green-cursor/master/screenshot.png)
1110

12-
First version:
13-
![preview1](preview1.gif)
14-
15-
More atom like dark grey text:
16-
![preview2](preview2.png)
17-
18-
For the best experience I recommend pairing with the [Soda Dark](https://github.com/buymeasoda/soda-theme) theme and the [Lucida Console](http://www.ffonts.net/Lucida-Console.font) font.
19-
20-
#### Manual Installation
21-
22-
1. Download the `.tmTheme` file
23-
2. *Browse Packages* from the Command Palette (`Ctrl+Shift+P` on Windows and Linux, `⇧⌘P` on OS X)
24-
3. Copy the `.tmTheme` files to `Packages\User`
25-
4. Activate the color in your preferences menu
26-
27-
#### Optional Cursor modifications
28-
29-
Add this lines to your user settings file to make your cursor bigger:
30-
31-
```
32-
"caret_extra_bottom": 2,
33-
"caret_extra_top": 2,
34-
"caret_extra_width": 3,
35-
```
11+
**Enjoy!**

package.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "vscode-theme-dark-atom-dark-green-cursor",
3+
"displayName": "Dark Atom Dark Green Cursor",
4+
"description": "Translation of dark Atom Dark theme to VSCode. Including eyecandy: A GREEN cursor.",
5+
"version": "0.9.0",
6+
"publisher": "therealmarv",
7+
"engines": {
8+
"vscode": "^1.5.0"
9+
},
10+
"categories": [
11+
"Themes"
12+
],
13+
"contributes": {
14+
"themes": [
15+
{
16+
"label": "Dark Atom Dark Green Cursor",
17+
"uiTheme": "vs-dark",
18+
"path": "./themes/dark_atom_dark_green_cursor.tmTheme"
19+
},
20+
{
21+
"label": "Dark Atom Dark",
22+
"uiTheme": "vs-dark",
23+
"path": "./themes/dark_atom_dark.tmTheme"
24+
}
25+
]
26+
}
27+
}

screenshot.png

185 KB
Loading

0 commit comments

Comments
 (0)