~ubuntu-branches/debian/sid/byobu/sid

« back to all changes in this revision

Viewing changes to usr/lib/byobu/include/colors

  • Committer: Package Import Robot
  • Author(s): Alexander Chernyakhovsky
  • Date: 2014-04-05 02:45:18 UTC
  • mfrom: (0.6.6) (0.1.229 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20140405024518-ctkkisww0gioiv5y
Tags: 5.77-1
* Syncing from Ubuntu.
* Remote python3 dependencies since not all are available in
  Debian (Closes: #742300)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.co>
 
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
 
25
export BYOBU_DARK="\#333333"
 
26
 
 
27
# Warm white
 
28
export BYOBU_LIGHT="\#EEEEEE"
 
29
 
 
30
# Aubergine
 
31
export BYOBU_ACCENT="\#75507B"
 
32
 
 
33
# Ubuntu orange
 
34
export BYOBU_HIGHLIGHT="\#DD4814"