#!/bin/sh

#######################################################################
## @rgbyk/color/bin/lib/config.sh
#######################################################################

# 1. $ chmod +x ./bin/lib/config.sh
# 2. $ ./bin/lib/config.sh

set -e

## VARIABLES
_name=$(node -p "require('./package.json').name")
_version=$(node -p "require('./package.json').version")

NODE_MODULES=$'./node_modules'

FOLDER_SRC_SCSS=$'./src/scss'

FOLDER_DIST=$'./dist'
FOLDER_DIST_ASSETS=$'./dist/assets'
FOLDER_DIST_ASSETS_CSS=$'./dist/assets/css'

FILE_STYLE_0=$'color'
FILE_STYLE_RYB=$'color-ryb'
FILE_STYLE_RGB=$'color-rgb'

## STYLING
black=$'\e[90;1m'
black_=$'\e[90;6m'
red=$'\e[91;1m'
red_=$'\e[91;6m'
green=$'\e[92;1m'
green_=$'\e[92;6m'
yellow=$'\e[93;1m'
yellow_=$'\e[93;6m'
blue=$'\e[94;1m'
blue_=$'\e[94;6m'
magenta=$'\e[95;1m'
magenta_=$'\e[95;6m'
cyan=$'\e[96;1m'
cyan_=$'\e[96;6m'
white=$'\e[97;1m'
white_=$'\e[97;6m'
reset=$'\e[0m'

bold=$'\e[1m'
reverse=$'\e[7m'
underline=$'\e[4m'