-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcolors.mk
33 lines (32 loc) · 1 KB
/
colors.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (C) 2015 AOKP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Localized color definitions
# tput color defs:
CLR_RED=$(shell tput setaf 1)
CLR_GRN=$(shell tput setaf 2)
CLR_YLW=$(shell tput setaf 3)
CLR_BLU=$(shell tput setaf 4)
CLR_MAG=$(shell tput setaf 5)
CLR_CYN=$(shell tput setaf 6)
CLR_WHT=$(shell tput setaf 7)
CLR_BOLD=$(shell tput bold)
CLR_RST=$(shell tput sgr0)
# Shell color defs:
CL_RED="\033[31m"
CL_GRN="\033[32m"
CL_YLW="\033[33m"
CL_BLU="\033[34m"
CL_MAG="\033[35m"
CL_CYN="\033[36m"
CL_RST="\033[0m"