Created
January 6, 2020 03:29
-
-
Save cmplstofB/0bd5cd9fc32fbb71be73a45e513992d9 to your computer and use it in GitHub Desktop.
LibreOffice Color Palette featured with dark theme on iOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
changequote(`[', `]')dnl | |
define([rgb], [[#]][[]][eval($1, 16, 2)][[]][eval($2, 16, 2)][[]][eval($3, 16, 2)])dnl | |
--> | |
<ooo:color-table | |
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" | |
xmlns:ooo="http://openoffice.org/2004/office" | |
> | |
<!-- | |
Reference: | |
<https://developer.apple.com/design/ | |
human-interface-guidelines/ios/visual-design/color/> | |
--> | |
<draw:color draw:name="Blue" draw:color="rgb(10, 132, 255)"/> | |
<draw:color draw:name="Green" draw:color="rgb(48, 209, 88)"/> | |
<draw:color draw:name="Indigo" draw:color="rgb(94, 92, 230)"/> | |
<draw:color draw:name="Orange" draw:color="rgb(255, 159, 10)"/> | |
<draw:color draw:name="Pink" draw:color="rgb(255, 55, 95)"/> | |
<draw:color draw:name="Purple" draw:color="rgb(191, 90, 242)"/> | |
<draw:color draw:name="Red" draw:color="rgb(255, 69, 58)"/> | |
<draw:color draw:name="Teal" draw:color="rgb(100, 210, 255)"/> | |
<draw:color draw:name="Yellow" draw:color="rgb(255, 214, 10)"/> | |
<draw:color draw:name="Gray" draw:color="rgb(142, 142, 147)"/> | |
<draw:color draw:name="Gray (2)" draw:color="rgb(99, 99, 102)"/> | |
<draw:color draw:name="Gray (3)" draw:color="rgb(72, 72, 74)"/> | |
<draw:color draw:name="Gray (4)" draw:color="rgb(58, 58, 60)"/> | |
<draw:color draw:name="Gray (5)" draw:color="rgb(44, 44, 46)"/> | |
<draw:color draw:name="Gray (6)" draw:color="rgb(28, 28, 30)"/> | |
</ooo:color-table> |
Author
cmplstofB
commented
Jan 6, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment