diff --git a/CHANGELOG.md b/CHANGELOG.md index 1888cc4..e6952e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,3 +3,13 @@

--- + +# 0.1.0 +![Release Date: 2017-10-07](https://img.shields.io/badge/Release_Date-2017--10--07-88C0D0.svg?style=flat-square) [![Project Board](https://img.shields.io/badge/Project_Board-0.1.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-alacritty/projects/2) [![Milestone](https://img.shields.io/badge/Milestone-0.1.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-alacritty/milestone/1) + +## Features +Implemented the main color scheme file [`nord.yml`](https://github.com/arcticicestudio/nord-alacritty/blob/develop/src/nord.yml). (@arcticicestudio, #1 in PR #2, 6e457657) + +Detailed information about features and install instructions can be found in the [README](https://github.com/arcticicestudio/nord-alacritty/blob/develop/README.md#installation) and in the [project wiki](https://github.com/arcticicestudio/nord-alacritty/wiki). + +


htop

diff --git a/README.md b/README.md index d1ceac8..dfa570d 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,21 @@ Based on the Nord color pa --- +

Font: Source Code Pro 12px.

+ +## Getting started +### Installation + +Replace the current color definitions in your [`alacritty.yml`][alacritty-gh-config] configuration file with the content from the [`nord.yml`][nord-yml] file. + +### Activation + +If `live_config_reload` is set to `true` the colors are applied immediately, otherwise Alacritty must be restarted. + +## Screenshots + +

htop

+ ### Contribution Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/arcticicestudio/nord-alacritty/issues). @@ -20,3 +35,6 @@ Please report issues/bugs, feature requests and suggestions for improvements to

Copyright © 2017 Arctic Ice Studio

+ +[alacritty-gh-config]: https://github.com/jwilm/alacritty#configuration +[nord-yml]: https://github.com/arcticicestudio/nord-alacritty/blob/develop/src/nord.yml diff --git a/assets/scrot-hero.png b/assets/scrot-hero.png new file mode 100755 index 0000000..4ef47c2 Binary files /dev/null and b/assets/scrot-hero.png differ diff --git a/assets/scrot-htop.png b/assets/scrot-htop.png new file mode 100755 index 0000000..1e12820 Binary files /dev/null and b/assets/scrot-htop.png differ diff --git a/src/nord.yml b/src/nord.yml new file mode 100644 index 0000000..7ff1c40 --- /dev/null +++ b/src/nord.yml @@ -0,0 +1,40 @@ +# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +# title Nord Alacritty + +# project nord-alacritty + +# version 0.1.0 + +# repository https://github.com/arcticicestudio/nord-alacritty + +# author Arctic Ice Studio + +# email development@arcticicestudio.com + +# copyright Copyright (C) 2017 + +# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +# +# [Resources] +# Nord +# https://github.com/arcticicestudio/nord +# Alacritty +# https://github.com/jwilm/alacritty +colors: + primary: + background: '0x2E3440' + foreground: '0xD8DEE9' + cursor: + text: '0x2E3440' + cursor: '0xD8DEE9' + normal: + black: '0x3B4252' + red: '0xBF616A' + green: '0xA3BE8C' + yellow: '0xEBCB8B' + blue: '0x81A1C1' + magenta: '0xB48EAD' + cyan: '0x88C0D0' + white: '0xE5E9F0' + bright: + black: '0x4C566A' + red: '0xBF616A' + green: '0xA3BE8C' + yellow: '0xEBCB8B' + blue: '0x81A1C1' + magenta: '0xB48EAD' + cyan: '0x8FBCBB' + white: '0xECEFF4'