Colour Complete
Sublime Text Plugin to complete colour names for CSS
Details
Installs
- Total 6K
- Win 5K
- Mac 671
- Linux 766
| Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 |
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
ColourComplete
A work in progress Sublime Text plugin to complete custom CSS colour names with the hex value.
The idea came about whilst at work after we all gave up trying to remember the hex value for the Flat UI Colours.
Setup
Colours.sublime-settings contains a colours key which is an array of colours:
{
"colours": [
["turquoise\tFlat UI", "#1abc9c"],
["emerland\tFlat UI", "#2ecc71"],
["peter-river\tFlat UI", "#3498db"],
["amethyst\tFlat UI", "#9b59b6"],
["wet-asphalt\tFlat UI", "#34495e"],
["green-sea\tFlat UI", "#16a085"],
["nephritis\tFlat UI", "#27ae60"],
["belize-hole\tFlat UI", "#2980b9"],
["wisteria\tFlat UI", "#8e44ad"],
["midnight-blue\tFlat UI", "#2c3e50"],
["sun-flower\tFlat UI", "#f1c40f"],
["carrot\tFlat UI", "#e67e22"],
["alizarin\tFlat UI", "#e74c3c"],
["clouds\tFlat UI", "#ecf0f1"],
["concrete\tFlat UI", "#95a5a6"],
["orange\tFlat UI", "#f39c12"],
["pumpkin\tFlat UI", "#d35400"],
["pomegranate\tFlat UI", "#c0392b"],
["silver\tFlat UI", "#bdc3c7"],
["asbestos\tFlat UI", "#7f8c8d"]
]
}
For anyone who doesn't know how Sublime completions work, the \tFlat UI will display on the right hand side of the completions list.
Now when you type alizarin Sublime will auto complete to #e74c3c. Simples!
Bugs
- Adding a
Colours.sublime-settingsto yourUserfolder will overwrite all existing default colours. - It'll only work in
source.cssscope. I need to add SCSS/SASS/LESS as well.