diff options
| author | Jabiertxof <jabier.arraiza@marker.es> | 2019-06-19 16:37:13 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-07-08 21:04:14 +0000 |
| commit | 17187618d32ef44dfde4aa192f2d33a135c28d07 (patch) | |
| tree | 5a982cb9cbc71ba6bd8b5fdf62a591adeefed93a /share/icons | |
| parent | Allow good render of multiples stylesheets (diff) | |
| download | inkscape-17187618d32ef44dfde4aa192f2d33a135c28d07.tar.gz inkscape-17187618d32ef44dfde4aa192f2d33a135c28d07.zip | |
add improvements to color handling
Diffstat (limited to 'share/icons')
| -rw-r--r-- | share/icons/hicolor/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | share/icons/nextgen/highlights.css | 18 |
2 files changed, 16 insertions, 3 deletions
diff --git a/share/icons/hicolor/CMakeLists.txt b/share/icons/hicolor/CMakeLists.txt index 7f3d00f3e..c9a80a69e 100644 --- a/share/icons/hicolor/CMakeLists.txt +++ b/share/icons/hicolor/CMakeLists.txt @@ -1,5 +1,6 @@ set(THEME hicolor) install(FILES "index.theme" DESTINATION ${INKSCAPE_SHARE_INSTALL}/icons/${THEME}) +install(FILES "highlights.css" DESTINATION ${INKSCAPE_SHARE_INSTALL}/icons/${THEME}) set(PIXMAP_SIZES "scalable" "symbolic") set(CONTENT "actions") diff --git a/share/icons/nextgen/highlights.css b/share/icons/nextgen/highlights.css index ba5798707..1a6b42e15 100644 --- a/share/icons/nextgen/highlights.css +++ b/share/icons/nextgen/highlights.css @@ -1,3 +1,15 @@ -.success { fill:#FFCE00; } -.warning { fill:#00FF48; } -.error { fill:#FF00DB; } +.base { + fill: #FF1100; +} + +.success { + fill: #FFCE00; +} + +.warning { + fill: #00FF48; +} + +.error { + fill: #FF00DB; +}
\ No newline at end of file |
