diff options
author | Horst3180 | 2015-05-28 17:41:22 +0200 |
---|---|---|
committer | Horst3180 | 2015-05-28 17:41:22 +0200 |
commit | f21150e179d2ceae1e743041fbf9ea9eddc93d9a (patch) | |
tree | ad8b0021f8f1501e5b1935a9053bdab5c6bdd8fc /extra | |
parent | d533557384041bfc1a73c0ee9f65c4184a4ec92a (diff) | |
download | solarc-theme-f21150e179d2ceae1e743041fbf9ea9eddc93d9a.tar.gz solarc-theme-f21150e179d2ceae1e743041fbf9ea9eddc93d9a.tar.xz solarc-theme-f21150e179d2ceae1e743041fbf9ea9eddc93d9a.zip |
add build system
Diffstat (limited to 'extra')
-rw-r--r-- | extra/Chrome/arc-theme.crx | bin | 0 -> 3325 bytes | |||
-rw-r--r-- | extra/Chrome/arc-theme/images/theme_frame.png | bin | 0 -> 1107 bytes | |||
-rw-r--r-- | extra/Chrome/arc-theme/images/theme_toolbar.png | bin | 0 -> 1613 bytes | |||
-rw-r--r-- | extra/Chrome/arc-theme/manifest.json | 38 | ||||
-rw-r--r-- | extra/Makefile.am | 4 |
5 files changed, 42 insertions, 0 deletions
diff --git a/extra/Chrome/arc-theme.crx b/extra/Chrome/arc-theme.crx Binary files differnew file mode 100644 index 0000000..472a882 --- /dev/null +++ b/extra/Chrome/arc-theme.crx diff --git a/extra/Chrome/arc-theme/images/theme_frame.png b/extra/Chrome/arc-theme/images/theme_frame.png Binary files differnew file mode 100644 index 0000000..48f841f --- /dev/null +++ b/extra/Chrome/arc-theme/images/theme_frame.png diff --git a/extra/Chrome/arc-theme/images/theme_toolbar.png b/extra/Chrome/arc-theme/images/theme_toolbar.png Binary files differnew file mode 100644 index 0000000..cefe4e5 --- /dev/null +++ b/extra/Chrome/arc-theme/images/theme_toolbar.png diff --git a/extra/Chrome/arc-theme/manifest.json b/extra/Chrome/arc-theme/manifest.json new file mode 100644 index 0000000..9feb930 --- /dev/null +++ b/extra/Chrome/arc-theme/manifest.json @@ -0,0 +1,38 @@ +{ + "description": "Arc theme for Chrome/Chromium", + "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6RY/VX2xN/FFEQQwi4sSHGaMxF6cARCTsKKxmPhbics9qDIkZxxBqeM4TUhHDhgsZrxZsXAplyKnIjTEIdw96XDK34uF5cqLOG5vzFRIOAdFfCyC9HNupQGg3Vd8PKSVmLZz/2Xsu5zmvx+zz3VIDtNK+HaVktMhJnO9utBougQIDAQAB", + "manifest_version": 2, + "name": "Arc", + "theme": { + "colors": { + "bookmark_text": [ 35, 35, 35 ], + "button_background": [ 0, 0, 0, 0 ], + "frame": [ 235, 235, 237 ], + "frame_inactive": [ 235, 235, 237 ], + "frame_incognito": [ 235, 235, 237 ], + "frame_incognito_inactive": [ 235, 235, 237 ], + "ntp_background": [ 255, 255, 255 ], + "ntp_text": [ 0, 0, 0 ], + "tab_background_text": [ 100, 100, 100 ], + "tab_text": [ 20, 20, 20 ], + "toolbar": [ 223, 223, 223 ] + }, + "images": { + "theme_frame": "images/theme_frame.png", + "theme_toolbar": "images/theme_toolbar.png" + }, + "properties": { + "ntp_background_alignment": "bottom", + "ntp_background_repeat": "no-repeat" + }, + "tints": { + "background_tab": [ -1, 0.5, 0.85 ], + "buttons": [ -1, -1, -1 ], + "frame": [ -1, -1, -1 ], + "frame_inactive": [ -1, -1, -1 ], + "frame_incognito": [ -1, 0.2, 0.35 ], + "frame_incognito_inactive": [ -1, 0.3, 0.6 ] + } + }, + "version": "1" +} diff --git a/extra/Makefile.am b/extra/Makefile.am new file mode 100644 index 0000000..a1c75c7 --- /dev/null +++ b/extra/Makefile.am @@ -0,0 +1,4 @@ +dist-hook: + cp -r \ + Chrome \ + $(distdir) |