├── spectrum-1.8.1 ├── build │ └── .gitignore ├── .gitignore ├── .travis.yml ├── test │ ├── loaders.html │ ├── index.html │ ├── loaders.js │ ├── qunit.css │ └── tests.js ├── i18n │ ├── jquery.spectrum-tr.js │ ├── jquery.spectrum-dk.js │ ├── jquery.spectrum-sv.js │ ├── jquery.spectrum-fi.js │ ├── jquery.spectrum-ja.js │ ├── jquery.spectrum-it.js │ ├── jquery.spectrum-nl.js │ ├── jquery.spectrum-ar.js │ ├── jquery.spectrum-ko.js │ ├── jquery.spectrum-zh-cn.js │ ├── jquery.spectrum-ru.js │ ├── jquery.spectrum-zh-tw.js │ ├── jquery.spectrum-he.js │ ├── jquery.spectrum-fa.js │ ├── jquery.spectrum-pl.js │ ├── jquery.spectrum-hr.js │ ├── jquery.spectrum-lt.js │ ├── jquery.spectrum-ca.js │ ├── jquery.spectrum-de.js │ ├── jquery.spectrum-es.js │ ├── jquery.spectrum-fr.js │ ├── jquery.spectrum-id.js │ ├── jquery.spectrum-pt-br.js │ ├── jquery.spectrum-gr.js │ └── jquery.spectrum-cs.js ├── bower.json ├── package.json ├── LICENSE ├── Gruntfile.js ├── themes │ ├── sp-dark.css │ └── index.html ├── README.md ├── docs │ ├── toc.js │ ├── docs.css │ ├── prettify.js │ └── docs.js ├── example │ ├── testcase.html │ ├── index.html │ └── example.js └── spectrum.css ├── docs └── overview.png ├── logos └── logo_1.png ├── common ├── js │ ├── common │ │ └── broadcast.js │ ├── hotkeys.js │ ├── view │ │ ├── app.js │ │ └── panel.js │ └── config │ │ ├── panelHandlers.js │ │ └── app.js └── css │ ├── config.css │ └── panels.css ├── view.html ├── config.html ├── README.md └── lower-thirds_hotkeys.lua /spectrum-1.8.1/build/.gitignore: -------------------------------------------------------------------------------- 1 | spectrum-min.js 2 | -------------------------------------------------------------------------------- /spectrum-1.8.1/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /docs/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoreyb/obs-panels/HEAD/docs/overview.png -------------------------------------------------------------------------------- /logos/logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoreyb/obs-panels/HEAD/logos/logo_1.png -------------------------------------------------------------------------------- /spectrum-1.8.1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 10 4 | before_script: 5 | - npm install -g grunt-cli 6 | script: 7 | - grunt travis --verbose -------------------------------------------------------------------------------- /spectrum-1.8.1/test/loaders.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |This is the default theme that you know and love.
43 | 44 |Similar to sp-light, only ... darker
52 | 53 |62 | You can change most any property on spectrum using CSS. Anything from borders and colors, to the size of the draggable areas, to the layout of the colorpicker can be changed with plain CSS. 63 |
64 |
66 | Please prefix all of your rules with .theme-name. The exception is for changes to .sp-container and .sp-replacer, which will have your theme name applied.
67 |
69 | See a basic scaffold for a super simple theme. See sp-dark.css for a slightly more advanced example. 70 |
71 |
72 | .theme-name.sp-container {
73 |
74 | }
75 | .theme-name.sp-replacer {
76 |
77 | }
78 | .theme-name .sp-preview {
79 |
80 | }
81 |
82 | 84 | If you have made some customizations that you would like to share, please open a pull request with the theme file inside of this themes/ directory in the project. Or open an issue with a link to the theme. 85 |
86 |77 | Spectrum can be customized to show and hide different portions of the colorpicker. Try clicking some of the buttons below to see how it can change. 78 |
79 | 80 |94 | 95 | 96 | 97 |
98 |108 | This page has loaded the German localization. Here is a list of all spectrum localizations. Please help expand our localizations if you know a language that isn't represented! You can copy and paste one of the files, and update the text for 'cancel' and 'choose', then submit a pull request at: https://github.com/bgrins/spectrum. 109 |
110 |119 | NOTE: these palettes are also a work in progress. Ideally the site will eventually allow you to choose between a few options and download them. 120 |
121 | 122 |
123 | The newGmail palette below is an example of customizing the palette size and layout with CSS.
124 |