├── .editorconfig
├── .gitattributes
├── .github
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ └── feature_request.md
└── pull_request_template.md
├── .gitignore
├── code-of-conduct.md
├── contributing.md
├── itermocean.itermcolors
├── license.md
├── media
└── screen.png
└── readme.md
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | indent_style = space
5 | indent_size = 2
6 | end_of_line = lf
7 | charset = utf-8
8 | trim_trailing_whitespace = true
9 | insert_final_newline = true
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
14 | [{*.json, *.yml}]
15 | indent_style = space
16 | indent_size = 2
17 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto eol=lf
2 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 |
5 | ---
6 |
7 | **Describe the bug**
8 | A clear and concise description of what the bug is.
9 |
10 | **To Reproduce**
11 | Steps to reproduce the behavior.
12 |
13 | **Expected behavior**
14 | A clear and concise description of what you expected to happen.
15 |
16 | **Screenshots**
17 | If applicable, add screenshots to help explain your problem.
18 |
19 | **Technical Info (please complete the following information)**
20 | - OS:
21 | - Itermocean Version:
22 | - iTerm Version:
23 |
24 | **Additional context**
25 | Add any other context about the problem here.
26 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 |
5 | ---
6 |
7 | **Is your feature request related to a problem? Please describe.**
8 | A clear and concise description of what the problem is.
9 |
10 | **Describe the solution you'd like**
11 | A clear and concise description of what you want to happen.
12 |
13 | **Additional context**
14 | Add any other context or screenshots about the feature request here.
15 |
--------------------------------------------------------------------------------
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # dependencies
2 | node_modules
3 | yarn.lock
4 |
5 | # logs
6 | *.log
7 |
8 | # OS
9 | .DS_Store
10 |
11 | # IDE
12 | .vscode
13 | .idea
14 | *.swp
15 | *.swo
16 |
17 | # coverage
18 | .nyc_output
19 | coverage
20 |
--------------------------------------------------------------------------------
/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6 |
7 | ## Our Standards
8 |
9 | Examples of behavior that contributes to creating a positive environment include:
10 |
11 | * Using welcoming and inclusive language
12 | * Being respectful of differing viewpoints and experiences
13 | * Gracefully accepting constructive criticism
14 | * Focusing on what is best for the community
15 | * Showing empathy towards other community members
16 |
17 | Examples of unacceptable behavior by participants include:
18 |
19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances
20 | * Trolling, insulting/derogatory comments, and personal or political attacks
21 | * Public or private harassment
22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission
23 | * Other conduct which could reasonably be considered inappropriate in a professional setting
24 |
25 | ## Our Responsibilities
26 |
27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28 |
29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30 |
31 | ## Scope
32 |
33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34 |
35 | ## Enforcement
36 |
37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at klaussinani@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38 |
39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40 |
41 | ## Attribution
42 |
43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44 |
45 | [homepage]: http://contributor-covenant.org
46 | [version]: http://contributor-covenant.org/version/1/4/
47 |
--------------------------------------------------------------------------------
/contributing.md:
--------------------------------------------------------------------------------
1 | # Contributing to Itermocean
2 |
3 | Thank you for taking the time to contribute to Itermocean!
4 |
5 | Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms.
6 |
7 | ## How to contribute
8 |
9 | ### Improve documentation
10 |
11 | Typo corrections, error fixes, better explanations, more examples etc. Open an issue regarding anything that you think it could be improved. You can use the [`docs` label](https://github.com/klaussinani/itermocean/labels/docs) to find out what others have suggested.
12 |
13 | ### Improve issues
14 |
15 | Sometimes reported issues lack information, are not reproducible, or are even plain invalid. Help us out to make them easier to resolve. Handling issues takes a lot of time that we could rather spend on fixing bugs and adding features.
16 |
17 | ### Give feedback on issues
18 |
19 | We're always looking for more opinions on discussions in the issue tracker. It's a good opportunity to influence the future direction of the project.
20 |
21 | The [`question` label](https://github.com/klaussinani/itermocean/labels/question) is a good place to find ongoing discussions.
22 |
23 | ### Write code
24 |
25 | You can use issue labels to discover issues you could help us out with.
26 |
27 | - [`feature request` issues](https://github.com/klaussinani/itermocean/labels/feature%20request) are features we are open to including.
28 | - [`bug` issues](https://github.com/klaussinani/itermocean/labels/bug) are known bugs we would like to fix.
29 | - [`future` issues](https://github.com/klaussinani/itermocean/labels/future) are those that we'd like to get to, but not anytime soon. Please check before working on these since we may not yet want to take on the burden of supporting those features.
30 | - on the [`help wanted`](https://github.com/klaussinani/itermocean/labels/help%20wanted) label you can always find something exciting going on.
31 |
32 | You may find an issue is assigned, or has the [`assigned` label](https://github.com/klaussinani/itermocean/labels/assigned). Please double-check before starting on this issue because somebody else is likely already working on it.
33 |
34 | ### Translating Documentation
35 |
36 | #### Create a Translation
37 |
38 | - Ensure that the document is not already translated in your target language.
39 | - Add the name of the language to the document as an extension, e.g: `readme.JP.md`
40 | - Create a Pull Request including the language in the title, e.g: `Readme: Japanese Translation`
41 |
42 | ### Submitting an issue
43 |
44 | - Search the issue tracker before opening an issue
45 | - Ensure you're using the latest version of Itermocean
46 | - Use a descriptive title
47 | - Include as much information as possible;
48 | - Steps to reproduce the issue
49 | - Error message
50 | - Itermocean version
51 | - Operating system **etc**
52 |
53 | ### Submitting a pull request
54 |
55 | - Non-trivial changes are often best discussed in an issue first, to prevent you from doing unnecessary work
56 | - Try making the pull request from a [topic branch](https://github.com/dchelimsky/rspec/wiki/Topic-Branches) if it is of crucial importance
57 | - Use a descriptive title for the pull request and commits
58 | - You might be asked to do changes to your pull request, you can do that by just [updating the existing one](https://github.com/RichardLitt/docs/blob/master/amending-a-commit-guide.md)
59 |
60 | > Based on project [AVA](https://github.com/avajs/ava/blob/master/contributing.md)'s contributing.md
61 |
--------------------------------------------------------------------------------
/itermocean.itermcolors:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Ansi 0 Color
6 |
7 | Alpha Component
8 | 1
9 | Blue Component
10 | 0.0
11 | Color Space
12 | sRGB
13 | Green Component
14 | 0.0
15 | Red Component
16 | 0.0
17 |
18 | Ansi 1 Color
19 |
20 | Alpha Component
21 | 1
22 | Blue Component
23 | 0.13333334028720856
24 | Color Space
25 | sRGB
26 | Green Component
27 | 0.34509804844856262
28 | Red Component
29 | 0.88627451658248901
30 |
31 | Ansi 10 Color
32 |
33 | Alpha Component
34 | 1
35 | Blue Component
36 | 0.49019607901573181
37 | Color Space
38 | sRGB
39 | Green Component
40 | 0.70196080207824707
41 | Red Component
42 | 0.078431375324726105
43 |
44 | Ansi 11 Color
45 |
46 | Alpha Component
47 | 1
48 | Blue Component
49 | 0.47843137383460999
50 | Color Space
51 | sRGB
52 | Green Component
53 | 0.94901961088180542
54 | Red Component
55 | 0.94901961088180542
56 |
57 | Ansi 12 Color
58 |
59 | Alpha Component
60 | 1
61 | Blue Component
62 | 0.76862746477127075
63 | Color Space
64 | sRGB
65 | Green Component
66 | 0.45882353186607361
67 | Red Component
68 | 0.22745098173618317
69 |
70 | Ansi 13 Color
71 |
72 | Alpha Component
73 | 1
74 | Blue Component
75 | 0.68627452850341797
76 | Color Space
77 | sRGB
78 | Green Component
79 | 0.24705882370471954
80 | Red Component
81 | 0.43921568989753723
82 |
83 | Ansi 14 Color
84 |
85 | Alpha Component
86 | 1
87 | Blue Component
88 | 0.97254902124404907
89 | Color Space
90 | sRGB
91 | Green Component
92 | 0.82745099067687988
93 | Red Component
94 | 0.52941179275512695
95 |
96 | Ansi 15 Color
97 |
98 | Alpha Component
99 | 1
100 | Blue Component
101 | 1
102 | Color Space
103 | sRGB
104 | Green Component
105 | 1
106 | Red Component
107 | 1
108 |
109 | Ansi 2 Color
110 |
111 | Alpha Component
112 | 1
113 | Blue Component
114 | 0.49019607901573181
115 | Color Space
116 | sRGB
117 | Green Component
118 | 0.70196080207824707
119 | Red Component
120 | 0.078431375324726105
121 |
122 | Ansi 3 Color
123 |
124 | Alpha Component
125 | 1
126 | Blue Component
127 | 0.47843137383460999
128 | Color Space
129 | sRGB
130 | Green Component
131 | 0.94901961088180542
132 | Red Component
133 | 0.94901961088180542
134 |
135 | Ansi 4 Color
136 |
137 | Alpha Component
138 | 1
139 | Blue Component
140 | 0.76862746477127075
141 | Color Space
142 | sRGB
143 | Green Component
144 | 0.45882353186607361
145 | Red Component
146 | 0.22745098173618317
147 |
148 | Ansi 5 Color
149 |
150 | Alpha Component
151 | 1
152 | Blue Component
153 | 0.68627452850341797
154 | Color Space
155 | sRGB
156 | Green Component
157 | 0.24705882370471954
158 | Red Component
159 | 0.43921568989753723
160 |
161 | Ansi 6 Color
162 |
163 | Alpha Component
164 | 1
165 | Blue Component
166 | 0.97254902124404907
167 | Color Space
168 | sRGB
169 | Green Component
170 | 0.82745099067687988
171 | Red Component
172 | 0.52941179275512695
173 |
174 | Ansi 7 Color
175 |
176 | Alpha Component
177 | 1
178 | Blue Component
179 | 0.83529412746429443
180 | Color Space
181 | sRGB
182 | Green Component
183 | 0.90980392694473267
184 | Red Component
185 | 0.93333333730697632
186 |
187 | Ansi 8 Color
188 |
189 | Alpha Component
190 | 1
191 | Blue Component
192 | 0.20000000298023224
193 | Color Space
194 | sRGB
195 | Green Component
196 | 0.20000000298023224
197 | Red Component
198 | 0.20000000298023224
199 |
200 | Ansi 9 Color
201 |
202 | Alpha Component
203 | 1
204 | Blue Component
205 | 0.13333334028720856
206 | Color Space
207 | sRGB
208 | Green Component
209 | 0.34509804844856262
210 | Red Component
211 | 0.88627451658248901
212 |
213 | Background Color
214 |
215 | Alpha Component
216 | 1
217 | Blue Component
218 | 0.10196078568696976
219 | Color Space
220 | sRGB
221 | Green Component
222 | 0.066666670143604279
223 | Red Component
224 | 0.058823529630899429
225 |
226 | Badge Color
227 |
228 | Alpha Component
229 | 0.5
230 | Blue Component
231 | 0.13333334028720856
232 | Color Space
233 | sRGB
234 | Green Component
235 | 0.34509804844856262
236 | Red Component
237 | 0.88627451658248901
238 |
239 | Bold Color
240 |
241 | Alpha Component
242 | 1
243 | Blue Component
244 | 0.63529413938522339
245 | Color Space
246 | sRGB
247 | Green Component
248 | 0.57647061347961426
249 | Red Component
250 | 0.56078433990478516
251 |
252 | Cursor Color
253 |
254 | Alpha Component
255 | 1
256 | Blue Component
257 | 0.63529413938522339
258 | Color Space
259 | sRGB
260 | Green Component
261 | 0.57647061347961426
262 | Red Component
263 | 0.56078433990478516
264 |
265 | Cursor Guide Color
266 |
267 | Alpha Component
268 | 0.33333333333333331
269 | Blue Component
270 | 0.63529413938522339
271 | Color Space
272 | sRGB
273 | Green Component
274 | 0.57647061347961426
275 | Red Component
276 | 0.56078433990478516
277 |
278 | Cursor Text Color
279 |
280 | Alpha Component
281 | 1
282 | Blue Component
283 | 0.10196078568696976
284 | Color Space
285 | sRGB
286 | Green Component
287 | 0.066666670143604279
288 | Red Component
289 | 0.058823529630899429
290 |
291 | Foreground Color
292 |
293 | Alpha Component
294 | 1
295 | Blue Component
296 | 0.63529413938522339
297 | Color Space
298 | sRGB
299 | Green Component
300 | 0.57647061347961426
301 | Red Component
302 | 0.56078433990478516
303 |
304 | Link Color
305 |
306 | Alpha Component
307 | 1
308 | Blue Component
309 | 0.76862746477127075
310 | Color Space
311 | sRGB
312 | Green Component
313 | 0.45882353186607361
314 | Red Component
315 | 0.22745098173618317
316 |
317 | Selected Text Color
318 |
319 | Alpha Component
320 | 1
321 | Blue Component
322 | 0.10196078568696976
323 | Color Space
324 | sRGB
325 | Green Component
326 | 0.066666670143604279
327 | Red Component
328 | 0.058823529630899429
329 |
330 | Selection Color
331 |
332 | Alpha Component
333 | 1
334 | Blue Component
335 | 0.83529412746429443
336 | Color Space
337 | sRGB
338 | Green Component
339 | 0.90980392694473267
340 | Red Component
341 | 0.93333333730697632
342 |
343 | Tab Color
344 |
345 | Alpha Component
346 | 1
347 | Blue Component
348 | 0.10196078568696976
349 | Color Space
350 | sRGB
351 | Green Component
352 | 0.066666670143604279
353 | Red Component
354 | 0.058823529630899429
355 |
356 | Underline Color
357 |
358 | Alpha Component
359 | 1
360 | Blue Component
361 | 0.63529413938522339
362 | Color Space
363 | sRGB
364 | Green Component
365 | 0.57647061347961426
366 | Red Component
367 | 0.56078433990478516
368 |
369 |
370 |
371 |
--------------------------------------------------------------------------------
/license.md:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 - present Klaus Sinani (klaussinani.github.io)
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/media/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/klaudiosinani/itermocean/84990d0116a943552e2d261028c09e1d7e74b473/media/screen.png
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 |
2 | Itermocean
3 |
4 |
5 |
6 | Deep oceanic blue iTerm theme
7 |
8 |
9 |
10 |
11 |

12 |
13 |
14 | ## Contents
15 |
16 | - [Install](#install)
17 | - [Extra](#extra)
18 | - [Related](#related)
19 | - [Team](#team)
20 | - [License](#license)
21 |
22 | ## Install
23 |
24 | - Right-click [`itermocean.itermcolors`](https://raw.githubusercontent.com/klaussinani/itermocean/master/itermocean.itermcolors) and choose `Save Link As`.
25 | - Double-click the downloaded file.
26 |
27 | ## Extra
28 |
29 | To get the exact same look, install the [JetBrains Mono](https://www.jetbrains.com/lp/mono) font as well as [oh-my-zsh](http://ohmyz.sh/) and set up [pure](https://github.com/sindresorhus/pure) as your zsh prompt.
30 |
31 | ## Related
32 |
33 | - [hyperocean](https://github.com/klaussinani/hyperocean) - Hyper Terminal version
34 | - [ocean-space](https://github.com/oscarmcm/ocean-space) - Visual Studio Code version
35 | - [oceandock](https://github.com/klaussinani/oceandock) - Plank dock version
36 |
37 | ## Team
38 |
39 | - Klaus Sinani ([@klaussinani](https://github.com/klaussinani))
40 |
41 | ## License
42 |
43 | [MIT](license.md)
44 |
--------------------------------------------------------------------------------