Skip to content

Commit b578b13

Browse files
committed
v1.0.0
0 parents  commit b578b13

File tree

13 files changed

+1364
-0
lines changed

13 files changed

+1364
-0
lines changed

.editorconfig

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = false
12+
insert_final_newline = false
13+
14+
[*.md]
15+
indent_size = 4
16+
17+
[*.{json,yml}]
18+
indent_size = 2
19+
trim_trailing_whitespace = true
20+
insert_final_newline = true
21+
22+
{*.go}
23+
indent_style = tab
24+
trim_trailing_whitespace = true
25+
insert_final_newline = true
26+
indent_size = 4

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Set default behavior to automatically normalize line endings.
2+
* text=auto

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
*.vsix
3+
.env

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
}
16+
]
17+
}

.vscodeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
vsc-extension-quickstart.md

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to the "turnstyle" extension will be documented in this file.
4+
5+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6+
7+
## [Unreleased]
8+
9+
- Initial release

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# turnstyle README
2+
3+
![never-enough](https://raw.githubusercontent.com/oxechicao/nature-high-theme/refs/heads/main/turnstile-never-enough.jpg)
4+
5+
6+
| Colors | Hex | HSLA |
7+
| ---------- | ------- | ------------------------ |
8+
| Dark Green | #123734 | hsla(171, 51%, 15%, 1) |
9+
| Light blue | #4391d4 | hsla(210, 58%, 56%, 1) |
10+
| Light | #c7cbd6 | hsla(225, 13%, 81%, 1) |
11+
| Pink | #be6d8d | hsla(335, 35%, 59%, 1) |
12+
| Orange | #97564b | hsla(13, 34%, 44%, 1) |
13+
| Yellow | #b48a49 | hsla(36, 57%, 59%, 1.00) |
14+
| Dark blue | #0e283f | hsla(211, 66%, 15%, 1) |
15+
16+
| Colors | Hex | HSLA |
17+
| ---------- | ------- | ---------------------- |
18+
| Dark Green | #093619 | hsla(138, 62%, 13%, 1) |
19+
| Light blue | #a7e5f0 | hsla(193, 69%, 80%, 1) |
20+
| Light | #e7f3f3 | hsla(180, 25%, 94%, 1) |
21+
| Pink | #f33c86 | hsla(332, 89%, 60%, 1) |
22+
| Orange | #ec810d | hsla(32, 87%, 49%, 1) |
23+
| Yellow | #e8d107 | hsla(54, 92%, 47%, 1) |
24+
| Dark blue | #0b4bbd | hsla(221, 85%, 39%, 1) |
25+
26+
| Colors | Hex | HSLA |
27+
| ---------- | ------- | ----------------------- |
28+
| Dark Green | #00513f | hsla(167, 100%, 16%, 1) |
29+
| Light blue | #5c93b8 | hsla(206, 35%, 54%, 1) |
30+
| Light | #d2d3ce | hsla(75, 7%, 82%, 1) |
31+
| Pink | #ad364a | hsla(349, 51%, 45%, 1) |
32+
| Orange | #8a5737 | hsla(23, 42%, 38%, 1) |
33+
| Yellow | #bf9346 | hsla(37, 46%, 52%, 1) |
34+
| Dark blue | #232e4b | hsla(223, 34%, 22%, 1) |
35+
36+
37+
38+
39+

0 commit comments

Comments
 (0)