1#!/bin/sh
2#
3#    colors: some color values needed by all library status scripts
4#
5#    Copyright (C) 2014 Dustin Kirkland
6#
7#    Authors: Dustin Kirkland <kirkland@byobu.org>
8#
9#    This program is free software: you can redistribute it and/or modify
10#    it under the terms of the GNU General Public License as published by
11#    the Free Software Foundation, version 3 of the License.
12#
13#    This program is distributed in the hope that it will be useful,
14#    but WITHOUT ANY WARRANTY; without even the implied warranty of
15#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16#    GNU General Public License for more details.
17#
18#    You should have received a copy of the GNU General Public License
19#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21# Default colors
22# Inspired by http://design.ubuntu.com/brand/colour-palette
23
24# Cool grey
25export BYOBU_DARK="#333333"
26
27# Warm white
28export BYOBU_LIGHT="#EEEEEE"
29
30# Aubergine
31export BYOBU_ACCENT="#75507B"
32
33# Ubuntu orange
34export BYOBU_HIGHLIGHT="#DD4814"
35