diff options
author | Tom Rondeau | 2011-10-20 11:20:03 -0700 |
---|---|---|
committer | Tom Rondeau | 2011-10-20 11:20:03 -0700 |
commit | 873fae042f658c68bc3e9aea0ba3d86603414848 (patch) | |
tree | 940a97373ad040b9162bc9d9245910fb2a71cfc9 /grc/python/Constants.py | |
parent | 8dec45ada7e92f425a876494d5daf85fd3825e98 (diff) | |
parent | d9545ca52708f66b5762e0ae597002beadd34631 (diff) | |
download | gnuradio-873fae042f658c68bc3e9aea0ba3d86603414848.tar.gz gnuradio-873fae042f658c68bc3e9aea0ba3d86603414848.tar.bz2 gnuradio-873fae042f658c68bc3e9aea0ba3d86603414848.zip |
Merge branch 'next' of gnuradio.org:gnuradio into next
Diffstat (limited to 'grc/python/Constants.py')
-rw-r--r-- | grc/python/Constants.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/grc/python/Constants.py b/grc/python/Constants.py index 4a234f080..ab547ea27 100644 --- a/grc/python/Constants.py +++ b/grc/python/Constants.py @@ -46,13 +46,15 @@ BLOCK_DTD = os.path.join(DATA_DIR, 'block.dtd') DEFAULT_FLOW_GRAPH = os.path.join(DATA_DIR, 'default_flow_graph.grc') CORE_TYPES = ( #name, key, sizeof, color - ('Complex Float 64', 'fc64', 16, '#72f313'), + ('Complex Float 64', 'fc64', 16, '#CC8C69'), ('Complex Float 32', 'fc32', 8, '#3399FF'), - ('Complex Integer 32', 'sc32', 8, '#00b789'), - ('Complex Integer 16', 'sc16', 4, '#f37913'), - ('Complex Integer 8', 'sc8', 2, '#ff0e7f'), - ('Float 64', 'f64', 8, '#86a8fa'), + ('Complex Integer 64', 'sc64', 16, '#66CC00'), + ('Complex Integer 32', 'sc32', 8, '#33cc66'), + ('Complex Integer 16', 'sc16', 4, '#cccc00'), + ('Complex Integer 8', 'sc8', 2, '#cc00cc'), + ('Float 64', 'f64', 8, '#66CCCC'), ('Float 32', 'f32', 4, '#FF8C69'), + ('Integer 64', 's64', 8, '#99FF33'), ('Integer 32', 's32', 4, '#00FF99'), ('Integer 16', 's16', 2, '#FFFF66'), ('Integer 8', 's8', 1, '#FF66FF'), |