├── .gitattributes ├── .gitignore ├── HA_MDI_JSON.xlsx ├── MaterialDesign-Webfont-master ├── README.md ├── bower.json ├── css │ ├── materialdesignicons.css │ ├── materialdesignicons.css.map │ ├── materialdesignicons.min.css │ └── materialdesignicons.min.css.map ├── fonts │ ├── materialdesignicons-webfont.eot │ ├── materialdesignicons-webfont.svg │ ├── materialdesignicons-webfont.ttf │ ├── materialdesignicons-webfont.woff │ └── materialdesignicons-webfont.woff2 ├── license.md ├── package.json ├── preview.html └── scss │ ├── _animated.scss │ ├── _core.scss │ ├── _extras.scss │ ├── _functions.scss │ ├── _icons.scss │ ├── _path.scss │ ├── _variables.scss │ └── materialdesignicons.scss ├── README.md ├── bower.json ├── css ├── materialdesignicons.css ├── materialdesignicons.css.map ├── materialdesignicons.min.css └── materialdesignicons.min.css.map ├── fonts ├── materialdesignicons-webfont.eot ├── materialdesignicons-webfont.svg ├── materialdesignicons-webfont.ttf ├── materialdesignicons-webfont.woff └── materialdesignicons-webfont.woff2 ├── home-assistant-mdi.html ├── images └── ha_mdi.png ├── license.md ├── package.json ├── preview.html └── scss ├── _animated.scss ├── _core.scss ├── _extras.scss ├── _functions.scss ├── _icons.scss ├── _path.scss ├── _variables.scss └── materialdesignicons.scss /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /HA_MDI_JSON.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/HA_MDI_JSON.xlsx -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/README.md: -------------------------------------------------------------------------------- 1 | # MaterialDesign-Webfont 2 | NPM/Bower Dist for Material Design Webfont. This includes the Stock and Community icons in a single webfont collection. 3 | 4 | ## Learn More 5 | 6 | https://github.com/Templarian/MaterialDesign 7 | -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mdi", 3 | "version": "2.0.46", 4 | "main": [ 5 | "scss/materialdesignicons.scss" 6 | ], 7 | "homepage": "http://materialdesignicons.com", 8 | "authors": [ 9 | { "name": "Austin Andrews", "homepage": "http://templarian.com" }, 10 | { "name": "Google", "homepage": "http://www.google.com/design" } 11 | ], 12 | "license": ["OFL-1.1", "MIT"], 13 | "ignore": [ 14 | "*.md", 15 | "*.json" 16 | ], 17 | "keywords": [ 18 | "material", 19 | "design", 20 | "icons", 21 | "webfont" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/license.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/), 2 | with Reserved Font Name Material Design Icons. 3 | 4 | Copyright (c) 2014, Google (http://www.google.com/design/) 5 | uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE 6 | 7 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 8 | This license is copied below, and is also available with a FAQ at: 9 | http://scripts.sil.org/OFL 10 | 11 | 12 | ----------------------------------------------------------- 13 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 14 | ----------------------------------------------------------- 15 | 16 | PREAMBLE 17 | The goals of the Open Font License (OFL) are to stimulate worldwide 18 | development of collaborative font projects, to support the font creation 19 | efforts of academic and linguistic communities, and to provide a free and 20 | open framework in which fonts may be shared and improved in partnership 21 | with others. 22 | 23 | The OFL allows the licensed fonts to be used, studied, modified and 24 | redistributed freely as long as they are not sold by themselves. The 25 | fonts, including any derivative works, can be bundled, embedded, 26 | redistributed and/or sold with any software provided that any reserved 27 | names are not used by derivative works. The fonts and derivatives, 28 | however, cannot be released under any other type of license. The 29 | requirement for fonts to remain under this license does not apply 30 | to any document created using the fonts or their derivatives. 31 | 32 | DEFINITIONS 33 | "Font Software" refers to the set of files released by the Copyright 34 | Holder(s) under this license and clearly marked as such. This may 35 | include source files, build scripts and documentation. 36 | 37 | "Reserved Font Name" refers to any names specified as such after the 38 | copyright statement(s). 39 | 40 | "Original Version" refers to the collection of Font Software components as 41 | distributed by the Copyright Holder(s). 42 | 43 | "Modified Version" refers to any derivative made by adding to, deleting, 44 | or substituting -- in part or in whole -- any of the components of the 45 | Original Version, by changing formats or by porting the Font Software to a 46 | new environment. 47 | 48 | "Author" refers to any designer, engineer, programmer, technical 49 | writer or other person who contributed to the Font Software. 50 | 51 | PERMISSION & CONDITIONS 52 | Permission is hereby granted, free of charge, to any person obtaining 53 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 54 | redistribute, and sell modified and unmodified copies of the Font 55 | Software, subject to the following conditions: 56 | 57 | 1) Neither the Font Software nor any of its individual components, 58 | in Original or Modified Versions, may be sold by itself. 59 | 60 | 2) Original or Modified Versions of the Font Software may be bundled, 61 | redistributed and/or sold with any software, provided that each copy 62 | contains the above copyright notice and this license. These can be 63 | included either as stand-alone text files, human-readable headers or 64 | in the appropriate machine-readable metadata fields within text or 65 | binary files as long as those fields can be easily viewed by the user. 66 | 67 | 3) No Modified Version of the Font Software may use the Reserved Font 68 | Name(s) unless explicit written permission is granted by the corresponding 69 | Copyright Holder. This restriction only applies to the primary font name as 70 | presented to the users. 71 | 72 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 73 | Software shall not be used to promote, endorse or advertise any 74 | Modified Version, except to acknowledge the contribution(s) of the 75 | Copyright Holder(s) and the Author(s) or with their explicit written 76 | permission. 77 | 78 | 5) The Font Software, modified or unmodified, in part or in whole, 79 | must be distributed entirely under this license, and must not be 80 | distributed under any other license. The requirement for fonts to 81 | remain under this license does not apply to any document created 82 | using the Font Software. 83 | 84 | TERMINATION 85 | This license becomes null and void if any of the above conditions are 86 | not met. 87 | 88 | DISCLAIMER 89 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 90 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 91 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 92 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 93 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 94 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 95 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 96 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 97 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mdi", 3 | "version": "2.0.46", 4 | "description": "Dist for Material Design Webfont. This includes the Stock and Community icons in a single webfont collection.", 5 | "main": "preview.html", 6 | "style": "css/materialdesignicons.css", 7 | "scripts": { 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/Templarian/MaterialDesign-Webfont.git" 13 | }, 14 | "keywords": [ 15 | "material", 16 | "design", 17 | "icons", 18 | "webfont" 19 | ], 20 | "author": { 21 | "name": "Austin Andrews", 22 | "web": "http://twitter.com/templarian" 23 | }, 24 | "licenses": [ 25 | { 26 | "type": "OFL-1.1", 27 | "url": "http://scripts.sil.org/OFL" 28 | }, 29 | { 30 | "type": "MIT", 31 | "url": "http://opensource.org/licenses/mit-license.html" 32 | } 33 | ], 34 | "bugs": { 35 | "url": "https://github.com/Templarian/MaterialDesign/issues" 36 | }, 37 | "homepage": "http://materialdesignicons.com" 38 | } 39 | -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // From Font Awesome 2 | .#{$mdi-css-prefix}-spin:before { 3 | -webkit-animation: #{$mdi-css-prefix}-spin 2s infinite linear; 4 | animation: #{$mdi-css-prefix}-spin 2s infinite linear; 5 | } 6 | 7 | @-webkit-keyframes #{$mdi-css-prefix}-spin { 8 | 0% { 9 | -webkit-transform: rotate(0deg); 10 | transform: rotate(0deg); 11 | } 12 | 100% { 13 | -webkit-transform: rotate(359deg); 14 | transform: rotate(359deg); 15 | } 16 | } 17 | 18 | @keyframes #{$mdi-css-prefix}-spin { 19 | 0% { 20 | -webkit-transform: rotate(0deg); 21 | transform: rotate(0deg); 22 | } 23 | 100% { 24 | -webkit-transform: rotate(359deg); 25 | transform: rotate(359deg); 26 | } 27 | } -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/scss/_core.scss: -------------------------------------------------------------------------------- 1 | .#{$mdi-css-prefix}:before, 2 | .#{$mdi-css-prefix}-set { 3 | display: inline-block; 4 | font: normal normal normal #{$mdi-font-size-base}/1 '#{$mdi-font-name}'; // shortening font declaration 5 | font-size: inherit; // can't have font-size inherit on line above, so need to override 6 | text-rendering: auto; // optimizelegibility throws things off #1094 7 | line-height: inherit; 8 | -webkit-font-smoothing: antialiased; 9 | -moz-osx-font-smoothing: grayscale; 10 | } -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/scss/_extras.scss: -------------------------------------------------------------------------------- 1 | $sizes: 18 24 36 48; 2 | @each $size in $sizes { 3 | .#{$mdi-css-prefix}-#{$size}px { 4 | &.#{$mdi-css-prefix}-set, 5 | &.#{$mdi-css-prefix}:before { 6 | font-size: $size * 1px; 7 | } 8 | } 9 | } 10 | 11 | .#{$mdi-css-prefix}-dark { 12 | &:before { 13 | color: rgba(0, 0, 0, 0.54); 14 | } 15 | &.mdi-inactive:before { 16 | color: rgba(0, 0, 0, 0.26); 17 | } 18 | } 19 | .#{$mdi-css-prefix}-light { 20 | &:before { 21 | color: rgba(255, 255, 255, 1); 22 | } 23 | &.mdi-inactive:before { 24 | color: rgba(255, 255, 255, 0.3); 25 | } 26 | } 27 | 28 | $degrees: 45 90 135 180 225 270 315; 29 | @each $degree in $degrees { 30 | .#{$mdi-css-prefix}-rotate-#{$degree}{ 31 | &:before { 32 | -webkit-transform: rotate(#{$degree}deg); 33 | -ms-transform: rotate(#{$degree}deg); 34 | transform: rotate(#{$degree}deg); 35 | } 36 | /* 37 | // Not included in production 38 | &.#{$mdi-css-prefix}-flip-h:before { 39 | -webkit-transform: scaleX(-1) rotate(#{$degree}deg); 40 | transform: scaleX(-1) rotate(#{$degree}deg); 41 | filter: FlipH; 42 | -ms-filter: "FlipH"; 43 | } 44 | &.#{$mdi-css-prefix}-flip-v:before { 45 | -webkit-transform: scaleY(-1) rotate(#{$degree}deg); 46 | -ms-transform: rotate(#{$degree}deg); 47 | transform: scaleY(-1) rotate(#{$degree}deg); 48 | filter: FlipV; 49 | -ms-filter: "FlipV"; 50 | } 51 | */ 52 | } 53 | } 54 | .#{$mdi-css-prefix}-flip-h:before { 55 | -webkit-transform: scaleX(-1); 56 | transform: scaleX(-1); 57 | filter: FlipH; 58 | -ms-filter: "FlipH"; 59 | } 60 | .#{$mdi-css-prefix}-flip-v:before { 61 | -webkit-transform: scaleY(-1); 62 | transform: scaleY(-1); 63 | filter: FlipV; 64 | -ms-filter: "FlipV"; 65 | } -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/scss/_functions.scss: -------------------------------------------------------------------------------- 1 | @function char($character-code) { 2 | @if function-exists("selector-append") { 3 | @return unquote("\"\\#{$character-code}\""); 4 | } 5 | 6 | @if "\\#{'x'}" == "\\x" { 7 | @return str-slice("\x", 1, 1) + $character-code; 8 | } 9 | @else { 10 | @return #{"\"\\"}#{$character-code + "\""}; 11 | } 12 | } 13 | 14 | @function mdi($name) { 15 | @if map-has-key($mdi-icons, $name) == false { 16 | @warn "Icon #{$name} not found."; 17 | @return ""; 18 | } 19 | @return char(map-get($mdi-icons, $name)); 20 | } -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/scss/_icons.scss: -------------------------------------------------------------------------------- 1 | @each $key, $value in $mdi-icons { 2 | .#{$mdi-css-prefix}-#{$key}:before { 3 | content: char($value); 4 | } 5 | } 6 | 7 | .#{$mdi-css-prefix}-blank:before { 8 | content: "\F68C"; 9 | visibility: hidden; 10 | } -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/scss/_path.scss: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: '#{$mdi-font-name}'; 3 | src: url('#{$mdi-font-path}/#{$mdi-filename}-webfont.eot?v=#{$mdi-version}'); 4 | src: url('#{$mdi-font-path}/#{$mdi-filename}-webfont.eot?#iefix&v=#{$mdi-version}') format('embedded-opentype'), 5 | url('#{$mdi-font-path}/#{$mdi-filename}-webfont.woff2?v=#{$mdi-version}') format('woff2'), 6 | url('#{$mdi-font-path}/#{$mdi-filename}-webfont.woff?v=#{$mdi-version}') format('woff'), 7 | url('#{$mdi-font-path}/#{$mdi-filename}-webfont.ttf?v=#{$mdi-version}') format('truetype'), 8 | url('#{$mdi-font-path}/#{$mdi-filename}-webfont.svg?v=#{$mdi-version}##{$mdi-filename}#{$mdi-font-weight}') format('svg'); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | $mdi-filename: "materialdesignicons"; 2 | $mdi-font-name: "Material Design Icons"; 3 | $mdi-font-family: "materialdesignicons"; 4 | $mdi-font-weight: "regular"; 5 | $mdi-font-path: "../fonts" !default; 6 | $mdi-font-size-base: 24px !default; 7 | $mdi-css-prefix: mdi !default; 8 | $mdi-version: "2.0.46" !default; 9 | 10 | $mdi-icons: ( 11 | "access-point": F002, 12 | "access-point-network": F003, 13 | "account": F004, 14 | "account-alert": F005, 15 | "account-box": F006, 16 | "account-box-outline": F007, 17 | "account-card-details": F5D2, 18 | "account-check": F008, 19 | "account-circle": F009, 20 | "account-convert": F00A, 21 | "account-edit": F6BB, 22 | "account-key": F00B, 23 | "account-location": F00C, 24 | "account-minus": F00D, 25 | "account-multiple": F00E, 26 | "account-multiple-minus": F5D3, 27 | "account-multiple-outline": F00F, 28 | "account-multiple-plus": F010, 29 | "account-network": F011, 30 | "account-off": F012, 31 | "account-outline": F013, 32 | "account-plus": F014, 33 | "account-remove": F015, 34 | "account-search": F016, 35 | "account-settings": F630, 36 | "account-settings-variant": F631, 37 | "account-star": F017, 38 | "account-switch": F019, 39 | "adjust": F01A, 40 | "air-conditioner": F01B, 41 | "airballoon": F01C, 42 | "airplane": F01D, 43 | "airplane-landing": F5D4, 44 | "airplane-off": F01E, 45 | "airplane-takeoff": F5D5, 46 | "airplay": F01F, 47 | "alarm": F020, 48 | "alarm-bell": F78D, 49 | "alarm-check": F021, 50 | "alarm-light": F78E, 51 | "alarm-multiple": F022, 52 | "alarm-off": F023, 53 | "alarm-plus": F024, 54 | "alarm-snooze": F68D, 55 | "album": F025, 56 | "alert": F026, 57 | "alert-box": F027, 58 | "alert-circle": F028, 59 | "alert-circle-outline": F5D6, 60 | "alert-decagram": F6BC, 61 | "alert-octagon": F029, 62 | "alert-octagram": F766, 63 | "alert-outline": F02A, 64 | "all-inclusive": F6BD, 65 | "alpha": F02B, 66 | "alphabetical": F02C, 67 | "altimeter": F5D7, 68 | "amazon": F02D, 69 | "amazon-clouddrive": F02E, 70 | "ambulance": F02F, 71 | "amplifier": F030, 72 | "anchor": F031, 73 | "android": F032, 74 | "android-debug-bridge": F033, 75 | "android-head": F78F, 76 | "android-studio": F034, 77 | "angular": F6B1, 78 | "angularjs": F6BE, 79 | "animation": F5D8, 80 | "apple": F035, 81 | "apple-finder": F036, 82 | "apple-ios": F037, 83 | "apple-keyboard-caps": F632, 84 | "apple-keyboard-command": F633, 85 | "apple-keyboard-control": F634, 86 | "apple-keyboard-option": F635, 87 | "apple-keyboard-shift": F636, 88 | "apple-mobileme": F038, 89 | "apple-safari": F039, 90 | "application": F614, 91 | "approval": F790, 92 | "apps": F03B, 93 | "archive": F03C, 94 | "arrange-bring-forward": F03D, 95 | "arrange-bring-to-front": F03E, 96 | "arrange-send-backward": F03F, 97 | "arrange-send-to-back": F040, 98 | "arrow-all": F041, 99 | "arrow-bottom-left": F042, 100 | "arrow-bottom-right": F043, 101 | "arrow-collapse": F615, 102 | "arrow-collapse-all": F044, 103 | "arrow-collapse-down": F791, 104 | "arrow-collapse-left": F792, 105 | "arrow-collapse-right": F793, 106 | "arrow-collapse-up": F794, 107 | "arrow-down": F045, 108 | "arrow-down-bold": F72D, 109 | "arrow-down-bold-box": F72E, 110 | "arrow-down-bold-box-outline": F72F, 111 | "arrow-down-bold-circle": F047, 112 | "arrow-down-bold-circle-outline": F048, 113 | "arrow-down-bold-hexagon-outline": F049, 114 | "arrow-down-box": F6BF, 115 | "arrow-down-drop-circle": F04A, 116 | "arrow-down-drop-circle-outline": F04B, 117 | "arrow-down-thick": F046, 118 | "arrow-expand": F616, 119 | "arrow-expand-all": F04C, 120 | "arrow-expand-down": F795, 121 | "arrow-expand-left": F796, 122 | "arrow-expand-right": F797, 123 | "arrow-expand-up": F798, 124 | "arrow-left": F04D, 125 | "arrow-left-bold": F730, 126 | "arrow-left-bold-box": F731, 127 | "arrow-left-bold-box-outline": F732, 128 | "arrow-left-bold-circle": F04F, 129 | "arrow-left-bold-circle-outline": F050, 130 | "arrow-left-bold-hexagon-outline": F051, 131 | "arrow-left-box": F6C0, 132 | "arrow-left-drop-circle": F052, 133 | "arrow-left-drop-circle-outline": F053, 134 | "arrow-left-thick": F04E, 135 | "arrow-right": F054, 136 | "arrow-right-bold": F733, 137 | "arrow-right-bold-box": F734, 138 | "arrow-right-bold-box-outline": F735, 139 | "arrow-right-bold-circle": F056, 140 | "arrow-right-bold-circle-outline": F057, 141 | "arrow-right-bold-hexagon-outline": F058, 142 | "arrow-right-box": F6C1, 143 | "arrow-right-drop-circle": F059, 144 | "arrow-right-drop-circle-outline": F05A, 145 | "arrow-right-thick": F055, 146 | "arrow-top-left": F05B, 147 | "arrow-top-right": F05C, 148 | "arrow-up": F05D, 149 | "arrow-up-bold": F736, 150 | "arrow-up-bold-box": F737, 151 | "arrow-up-bold-box-outline": F738, 152 | "arrow-up-bold-circle": F05F, 153 | "arrow-up-bold-circle-outline": F060, 154 | "arrow-up-bold-hexagon-outline": F061, 155 | "arrow-up-box": F6C2, 156 | "arrow-up-drop-circle": F062, 157 | "arrow-up-drop-circle-outline": F063, 158 | "arrow-up-thick": F05E, 159 | "assistant": F064, 160 | "asterisk": F6C3, 161 | "at": F065, 162 | "atom": F767, 163 | "attachment": F066, 164 | "audiobook": F067, 165 | "auto-fix": F068, 166 | "auto-upload": F069, 167 | "autorenew": F06A, 168 | "av-timer": F06B, 169 | "baby": F06C, 170 | "baby-buggy": F68E, 171 | "backburger": F06D, 172 | "backspace": F06E, 173 | "backup-restore": F06F, 174 | "bandcamp": F674, 175 | "bank": F070, 176 | "barcode": F071, 177 | "barcode-scan": F072, 178 | "barley": F073, 179 | "barrel": F074, 180 | "basecamp": F075, 181 | "basket": F076, 182 | "basket-fill": F077, 183 | "basket-unfill": F078, 184 | "battery": F079, 185 | "battery-10": F07A, 186 | "battery-20": F07B, 187 | "battery-30": F07C, 188 | "battery-40": F07D, 189 | "battery-50": F07E, 190 | "battery-60": F07F, 191 | "battery-70": F080, 192 | "battery-80": F081, 193 | "battery-90": F082, 194 | "battery-alert": F083, 195 | "battery-charging": F084, 196 | "battery-charging-100": F085, 197 | "battery-charging-20": F086, 198 | "battery-charging-30": F087, 199 | "battery-charging-40": F088, 200 | "battery-charging-60": F089, 201 | "battery-charging-80": F08A, 202 | "battery-charging-90": F08B, 203 | "battery-minus": F08C, 204 | "battery-negative": F08D, 205 | "battery-outline": F08E, 206 | "battery-plus": F08F, 207 | "battery-positive": F090, 208 | "battery-unknown": F091, 209 | "beach": F092, 210 | "beaker": F68F, 211 | "beats": F097, 212 | "beer": F098, 213 | "behance": F099, 214 | "bell": F09A, 215 | "bell-off": F09B, 216 | "bell-outline": F09C, 217 | "bell-plus": F09D, 218 | "bell-ring": F09E, 219 | "bell-ring-outline": F09F, 220 | "bell-sleep": F0A0, 221 | "beta": F0A1, 222 | "bible": F0A2, 223 | "bike": F0A3, 224 | "bing": F0A4, 225 | "binoculars": F0A5, 226 | "bio": F0A6, 227 | "biohazard": F0A7, 228 | "bitbucket": F0A8, 229 | "black-mesa": F0A9, 230 | "blackberry": F0AA, 231 | "blender": F0AB, 232 | "blinds": F0AC, 233 | "block-helper": F0AD, 234 | "blogger": F0AE, 235 | "bluetooth": F0AF, 236 | "bluetooth-audio": F0B0, 237 | "bluetooth-connect": F0B1, 238 | "bluetooth-off": F0B2, 239 | "bluetooth-settings": F0B3, 240 | "bluetooth-transfer": F0B4, 241 | "blur": F0B5, 242 | "blur-linear": F0B6, 243 | "blur-off": F0B7, 244 | "blur-radial": F0B8, 245 | "bomb": F690, 246 | "bomb-off": F6C4, 247 | "bone": F0B9, 248 | "book": F0BA, 249 | "book-minus": F5D9, 250 | "book-multiple": F0BB, 251 | "book-multiple-variant": F0BC, 252 | "book-open": F0BD, 253 | "book-open-page-variant": F5DA, 254 | "book-open-variant": F0BE, 255 | "book-plus": F5DB, 256 | "book-secure": F799, 257 | "book-unsecure": F79A, 258 | "book-variant": F0BF, 259 | "bookmark": F0C0, 260 | "bookmark-check": F0C1, 261 | "bookmark-music": F0C2, 262 | "bookmark-outline": F0C3, 263 | "bookmark-plus": F0C5, 264 | "bookmark-plus-outline": F0C4, 265 | "bookmark-remove": F0C6, 266 | "boombox": F5DC, 267 | "bootstrap": F6C5, 268 | "border-all": F0C7, 269 | "border-bottom": F0C8, 270 | "border-color": F0C9, 271 | "border-horizontal": F0CA, 272 | "border-inside": F0CB, 273 | "border-left": F0CC, 274 | "border-none": F0CD, 275 | "border-outside": F0CE, 276 | "border-right": F0CF, 277 | "border-style": F0D0, 278 | "border-top": F0D1, 279 | "border-vertical": F0D2, 280 | "bow-tie": F677, 281 | "bowl": F617, 282 | "bowling": F0D3, 283 | "box": F0D4, 284 | "box-cutter": F0D5, 285 | "box-shadow": F637, 286 | "bridge": F618, 287 | "briefcase": F0D6, 288 | "briefcase-check": F0D7, 289 | "briefcase-download": F0D8, 290 | "briefcase-upload": F0D9, 291 | "brightness-1": F0DA, 292 | "brightness-2": F0DB, 293 | "brightness-3": F0DC, 294 | "brightness-4": F0DD, 295 | "brightness-5": F0DE, 296 | "brightness-6": F0DF, 297 | "brightness-7": F0E0, 298 | "brightness-auto": F0E1, 299 | "broom": F0E2, 300 | "brush": F0E3, 301 | "buffer": F619, 302 | "bug": F0E4, 303 | "bulletin-board": F0E5, 304 | "bullhorn": F0E6, 305 | "bullseye": F5DD, 306 | "burst-mode": F5DE, 307 | "bus": F0E7, 308 | "bus-articulated-end": F79B, 309 | "bus-articulated-front": F79C, 310 | "bus-double-decker": F79D, 311 | "bus-school": F79E, 312 | "bus-side": F79F, 313 | "cached": F0E8, 314 | "cake": F0E9, 315 | "cake-layered": F0EA, 316 | "cake-variant": F0EB, 317 | "calculator": F0EC, 318 | "calendar": F0ED, 319 | "calendar-blank": F0EE, 320 | "calendar-check": F0EF, 321 | "calendar-clock": F0F0, 322 | "calendar-multiple": F0F1, 323 | "calendar-multiple-check": F0F2, 324 | "calendar-plus": F0F3, 325 | "calendar-question": F691, 326 | "calendar-range": F678, 327 | "calendar-remove": F0F4, 328 | "calendar-text": F0F5, 329 | "calendar-today": F0F6, 330 | "call-made": F0F7, 331 | "call-merge": F0F8, 332 | "call-missed": F0F9, 333 | "call-received": F0FA, 334 | "call-split": F0FB, 335 | "camcorder": F0FC, 336 | "camcorder-box": F0FD, 337 | "camcorder-box-off": F0FE, 338 | "camcorder-off": F0FF, 339 | "camera": F100, 340 | "camera-burst": F692, 341 | "camera-enhance": F101, 342 | "camera-front": F102, 343 | "camera-front-variant": F103, 344 | "camera-gopro": F7A0, 345 | "camera-iris": F104, 346 | "camera-metering-center": F7A1, 347 | "camera-metering-matrix": F7A2, 348 | "camera-metering-partial": F7A3, 349 | "camera-metering-spot": F7A4, 350 | "camera-off": F5DF, 351 | "camera-party-mode": F105, 352 | "camera-rear": F106, 353 | "camera-rear-variant": F107, 354 | "camera-switch": F108, 355 | "camera-timer": F109, 356 | "cancel": F739, 357 | "candle": F5E2, 358 | "candycane": F10A, 359 | "cannabis": F7A5, 360 | "car": F10B, 361 | "car-battery": F10C, 362 | "car-connected": F10D, 363 | "car-convertable": F7A6, 364 | "car-estate": F7A7, 365 | "car-hatchback": F7A8, 366 | "car-pickup": F7A9, 367 | "car-side": F7AA, 368 | "car-sports": F7AB, 369 | "car-wash": F10E, 370 | "caravan": F7AC, 371 | "cards": F638, 372 | "cards-outline": F639, 373 | "cards-playing-outline": F63A, 374 | "cards-variant": F6C6, 375 | "carrot": F10F, 376 | "cart": F110, 377 | "cart-off": F66B, 378 | "cart-outline": F111, 379 | "cart-plus": F112, 380 | "case-sensitive-alt": F113, 381 | "cash": F114, 382 | "cash-100": F115, 383 | "cash-multiple": F116, 384 | "cash-usd": F117, 385 | "cast": F118, 386 | "cast-connected": F119, 387 | "cast-off": F789, 388 | "castle": F11A, 389 | "cat": F11B, 390 | "cctv": F7AD, 391 | "ceiling-light": F768, 392 | "cellphone": F11C, 393 | "cellphone-android": F11D, 394 | "cellphone-basic": F11E, 395 | "cellphone-dock": F11F, 396 | "cellphone-iphone": F120, 397 | "cellphone-link": F121, 398 | "cellphone-link-off": F122, 399 | "cellphone-settings": F123, 400 | "certificate": F124, 401 | "chair-school": F125, 402 | "chart-arc": F126, 403 | "chart-areaspline": F127, 404 | "chart-bar": F128, 405 | "chart-bar-stacked": F769, 406 | "chart-bubble": F5E3, 407 | "chart-donut": F7AE, 408 | "chart-donut-variant": F7AF, 409 | "chart-gantt": F66C, 410 | "chart-histogram": F129, 411 | "chart-line": F12A, 412 | "chart-line-stacked": F76A, 413 | "chart-line-variant": F7B0, 414 | "chart-pie": F12B, 415 | "chart-scatterplot-hexbin": F66D, 416 | "chart-timeline": F66E, 417 | "check": F12C, 418 | "check-all": F12D, 419 | "check-circle": F5E0, 420 | "check-circle-outline": F5E1, 421 | "checkbox-blank": F12E, 422 | "checkbox-blank-circle": F12F, 423 | "checkbox-blank-circle-outline": F130, 424 | "checkbox-blank-outline": F131, 425 | "checkbox-marked": F132, 426 | "checkbox-marked-circle": F133, 427 | "checkbox-marked-circle-outline": F134, 428 | "checkbox-marked-outline": F135, 429 | "checkbox-multiple-blank": F136, 430 | "checkbox-multiple-blank-circle": F63B, 431 | "checkbox-multiple-blank-circle-outline": F63C, 432 | "checkbox-multiple-blank-outline": F137, 433 | "checkbox-multiple-marked": F138, 434 | "checkbox-multiple-marked-circle": F63D, 435 | "checkbox-multiple-marked-circle-outline": F63E, 436 | "checkbox-multiple-marked-outline": F139, 437 | "checkerboard": F13A, 438 | "chemical-weapon": F13B, 439 | "chevron-double-down": F13C, 440 | "chevron-double-left": F13D, 441 | "chevron-double-right": F13E, 442 | "chevron-double-up": F13F, 443 | "chevron-down": F140, 444 | "chevron-left": F141, 445 | "chevron-right": F142, 446 | "chevron-up": F143, 447 | "chili-hot": F7B1, 448 | "chili-medium": F7B2, 449 | "chili-mild": F7B3, 450 | "chip": F61A, 451 | "church": F144, 452 | "circle": F764, 453 | "circle-outline": F765, 454 | "cisco-webex": F145, 455 | "city": F146, 456 | "clipboard": F147, 457 | "clipboard-account": F148, 458 | "clipboard-alert": F149, 459 | "clipboard-arrow-down": F14A, 460 | "clipboard-arrow-left": F14B, 461 | "clipboard-check": F14C, 462 | "clipboard-flow": F6C7, 463 | "clipboard-outline": F14D, 464 | "clipboard-plus": F750, 465 | "clipboard-text": F14E, 466 | "clippy": F14F, 467 | "clock": F150, 468 | "clock-alert": F5CE, 469 | "clock-end": F151, 470 | "clock-fast": F152, 471 | "clock-in": F153, 472 | "clock-out": F154, 473 | "clock-start": F155, 474 | "close": F156, 475 | "close-box": F157, 476 | "close-box-outline": F158, 477 | "close-circle": F159, 478 | "close-circle-outline": F15A, 479 | "close-network": F15B, 480 | "close-octagon": F15C, 481 | "close-octagon-outline": F15D, 482 | "close-outline": F6C8, 483 | "closed-caption": F15E, 484 | "cloud": F15F, 485 | "cloud-braces": F7B4, 486 | "cloud-check": F160, 487 | "cloud-circle": F161, 488 | "cloud-download": F162, 489 | "cloud-off-outline": F164, 490 | "cloud-outline": F163, 491 | "cloud-print": F165, 492 | "cloud-print-outline": F166, 493 | "cloud-sync": F63F, 494 | "cloud-tags": F7B5, 495 | "cloud-upload": F167, 496 | "code-array": F168, 497 | "code-braces": F169, 498 | "code-brackets": F16A, 499 | "code-equal": F16B, 500 | "code-greater-than": F16C, 501 | "code-greater-than-or-equal": F16D, 502 | "code-less-than": F16E, 503 | "code-less-than-or-equal": F16F, 504 | "code-not-equal": F170, 505 | "code-not-equal-variant": F171, 506 | "code-parentheses": F172, 507 | "code-string": F173, 508 | "code-tags": F174, 509 | "code-tags-check": F693, 510 | "codepen": F175, 511 | "coffee": F176, 512 | "coffee-outline": F6C9, 513 | "coffee-to-go": F177, 514 | "coin": F178, 515 | "coins": F694, 516 | "collage": F640, 517 | "color-helper": F179, 518 | "comment": F17A, 519 | "comment-account": F17B, 520 | "comment-account-outline": F17C, 521 | "comment-alert": F17D, 522 | "comment-alert-outline": F17E, 523 | "comment-check": F17F, 524 | "comment-check-outline": F180, 525 | "comment-multiple-outline": F181, 526 | "comment-outline": F182, 527 | "comment-plus-outline": F183, 528 | "comment-processing": F184, 529 | "comment-processing-outline": F185, 530 | "comment-question-outline": F186, 531 | "comment-remove-outline": F187, 532 | "comment-text": F188, 533 | "comment-text-outline": F189, 534 | "compare": F18A, 535 | "compass": F18B, 536 | "compass-outline": F18C, 537 | "console": F18D, 538 | "console-line": F7B6, 539 | "contact-mail": F18E, 540 | "contacts": F6CA, 541 | "content-copy": F18F, 542 | "content-cut": F190, 543 | "content-duplicate": F191, 544 | "content-paste": F192, 545 | "content-save": F193, 546 | "content-save-all": F194, 547 | "content-save-settings": F61B, 548 | "contrast": F195, 549 | "contrast-box": F196, 550 | "contrast-circle": F197, 551 | "cookie": F198, 552 | "copyright": F5E6, 553 | "corn": F7B7, 554 | "counter": F199, 555 | "cow": F19A, 556 | "creation": F1C9, 557 | "credit-card": F19B, 558 | "credit-card-multiple": F19C, 559 | "credit-card-off": F5E4, 560 | "credit-card-plus": F675, 561 | "credit-card-scan": F19D, 562 | "crop": F19E, 563 | "crop-free": F19F, 564 | "crop-landscape": F1A0, 565 | "crop-portrait": F1A1, 566 | "crop-rotate": F695, 567 | "crop-square": F1A2, 568 | "crosshairs": F1A3, 569 | "crosshairs-gps": F1A4, 570 | "crown": F1A5, 571 | "cube": F1A6, 572 | "cube-outline": F1A7, 573 | "cube-send": F1A8, 574 | "cube-unfolded": F1A9, 575 | "cup": F1AA, 576 | "cup-off": F5E5, 577 | "cup-water": F1AB, 578 | "currency-btc": F1AC, 579 | "currency-chf": F7B8, 580 | "currency-cny": F7B9, 581 | "currency-eth": F7BA, 582 | "currency-eur": F1AD, 583 | "currency-gbp": F1AE, 584 | "currency-inr": F1AF, 585 | "currency-jpy": F7BB, 586 | "currency-krw": F7BC, 587 | "currency-ngn": F1B0, 588 | "currency-rub": F1B1, 589 | "currency-sign": F7BD, 590 | "currency-try": F1B2, 591 | "currency-twd": F7BE, 592 | "currency-usd": F1B3, 593 | "currency-usd-off": F679, 594 | "cursor-default": F1B4, 595 | "cursor-default-outline": F1B5, 596 | "cursor-move": F1B6, 597 | "cursor-pointer": F1B7, 598 | "cursor-text": F5E7, 599 | "database": F1B8, 600 | "database-minus": F1B9, 601 | "database-plus": F1BA, 602 | "debug-step-into": F1BB, 603 | "debug-step-out": F1BC, 604 | "debug-step-over": F1BD, 605 | "decagram": F76B, 606 | "decagram-outline": F76C, 607 | "decimal-decrease": F1BE, 608 | "decimal-increase": F1BF, 609 | "delete": F1C0, 610 | "delete-circle": F682, 611 | "delete-empty": F6CB, 612 | "delete-forever": F5E8, 613 | "delete-sweep": F5E9, 614 | "delete-variant": F1C1, 615 | "delta": F1C2, 616 | "deskphone": F1C3, 617 | "desktop-classic": F7BF, 618 | "desktop-mac": F1C4, 619 | "desktop-tower": F1C5, 620 | "details": F1C6, 621 | "developer-board": F696, 622 | "deviantart": F1C7, 623 | "dialpad": F61C, 624 | "diamond": F1C8, 625 | "dice-1": F1CA, 626 | "dice-2": F1CB, 627 | "dice-3": F1CC, 628 | "dice-4": F1CD, 629 | "dice-5": F1CE, 630 | "dice-6": F1CF, 631 | "dice-d10": F76E, 632 | "dice-d20": F5EA, 633 | "dice-d4": F5EB, 634 | "dice-d6": F5EC, 635 | "dice-d8": F5ED, 636 | "dice-multiple": F76D, 637 | "dictionary": F61D, 638 | "dip-switch": F7C0, 639 | "directions": F1D0, 640 | "directions-fork": F641, 641 | "discord": F66F, 642 | "disk": F5EE, 643 | "disk-alert": F1D1, 644 | "disqus": F1D2, 645 | "disqus-outline": F1D3, 646 | "division": F1D4, 647 | "division-box": F1D5, 648 | "dna": F683, 649 | "dns": F1D6, 650 | "do-not-disturb": F697, 651 | "do-not-disturb-off": F698, 652 | "dolby": F6B2, 653 | "domain": F1D7, 654 | "donkey": F7C1, 655 | "dots-horizontal": F1D8, 656 | "dots-horizontal-circle": F7C2, 657 | "dots-vertical": F1D9, 658 | "dots-vertical-circle": F7C3, 659 | "douban": F699, 660 | "download": F1DA, 661 | "download-network": F6F3, 662 | "drag": F1DB, 663 | "drag-horizontal": F1DC, 664 | "drag-vertical": F1DD, 665 | "drawing": F1DE, 666 | "drawing-box": F1DF, 667 | "dribbble": F1E0, 668 | "dribbble-box": F1E1, 669 | "drone": F1E2, 670 | "dropbox": F1E3, 671 | "drupal": F1E4, 672 | "duck": F1E5, 673 | "dumbbell": F1E6, 674 | "ear-hearing": F7C4, 675 | "earth": F1E7, 676 | "earth-box": F6CC, 677 | "earth-box-off": F6CD, 678 | "earth-off": F1E8, 679 | "edge": F1E9, 680 | "eject": F1EA, 681 | "elephant": F7C5, 682 | "elevation-decline": F1EB, 683 | "elevation-rise": F1EC, 684 | "elevator": F1ED, 685 | "email": F1EE, 686 | "email-alert": F6CE, 687 | "email-open": F1EF, 688 | "email-open-outline": F5EF, 689 | "email-outline": F1F0, 690 | "email-secure": F1F1, 691 | "email-variant": F5F0, 692 | "emby": F6B3, 693 | "emoticon": F1F2, 694 | "emoticon-cool": F1F3, 695 | "emoticon-dead": F69A, 696 | "emoticon-devil": F1F4, 697 | "emoticon-excited": F69B, 698 | "emoticon-happy": F1F5, 699 | "emoticon-neutral": F1F6, 700 | "emoticon-poop": F1F7, 701 | "emoticon-sad": F1F8, 702 | "emoticon-tongue": F1F9, 703 | "engine": F1FA, 704 | "engine-outline": F1FB, 705 | "equal": F1FC, 706 | "equal-box": F1FD, 707 | "eraser": F1FE, 708 | "eraser-variant": F642, 709 | "escalator": F1FF, 710 | "ethernet": F200, 711 | "ethernet-cable": F201, 712 | "ethernet-cable-off": F202, 713 | "etsy": F203, 714 | "ev-station": F5F1, 715 | "eventbrite": F7C6, 716 | "evernote": F204, 717 | "exclamation": F205, 718 | "exit-to-app": F206, 719 | "export": F207, 720 | "eye": F208, 721 | "eye-off": F209, 722 | "eye-off-outline": F6D0, 723 | "eye-outline": F6CF, 724 | "eyedropper": F20A, 725 | "eyedropper-variant": F20B, 726 | "face": F643, 727 | "face-profile": F644, 728 | "facebook": F20C, 729 | "facebook-box": F20D, 730 | "facebook-messenger": F20E, 731 | "factory": F20F, 732 | "fan": F210, 733 | "fast-forward": F211, 734 | "fast-forward-outline": F6D1, 735 | "fax": F212, 736 | "feather": F6D2, 737 | "ferry": F213, 738 | "file": F214, 739 | "file-account": F73A, 740 | "file-chart": F215, 741 | "file-check": F216, 742 | "file-cloud": F217, 743 | "file-delimited": F218, 744 | "file-document": F219, 745 | "file-document-box": F21A, 746 | "file-excel": F21B, 747 | "file-excel-box": F21C, 748 | "file-export": F21D, 749 | "file-find": F21E, 750 | "file-hidden": F613, 751 | "file-image": F21F, 752 | "file-import": F220, 753 | "file-lock": F221, 754 | "file-multiple": F222, 755 | "file-music": F223, 756 | "file-outline": F224, 757 | "file-pdf": F225, 758 | "file-pdf-box": F226, 759 | "file-plus": F751, 760 | "file-powerpoint": F227, 761 | "file-powerpoint-box": F228, 762 | "file-presentation-box": F229, 763 | "file-restore": F670, 764 | "file-send": F22A, 765 | "file-tree": F645, 766 | "file-video": F22B, 767 | "file-word": F22C, 768 | "file-word-box": F22D, 769 | "file-xml": F22E, 770 | "film": F22F, 771 | "filmstrip": F230, 772 | "filmstrip-off": F231, 773 | "filter": F232, 774 | "filter-outline": F233, 775 | "filter-remove": F234, 776 | "filter-remove-outline": F235, 777 | "filter-variant": F236, 778 | "find-replace": F6D3, 779 | "fingerprint": F237, 780 | "fire": F238, 781 | "firefox": F239, 782 | "fish": F23A, 783 | "flag": F23B, 784 | "flag-checkered": F23C, 785 | "flag-outline": F23D, 786 | "flag-outline-variant": F23E, 787 | "flag-triangle": F23F, 788 | "flag-variant": F240, 789 | "flash": F241, 790 | "flash-auto": F242, 791 | "flash-off": F243, 792 | "flash-outline": F6D4, 793 | "flash-red-eye": F67A, 794 | "flashlight": F244, 795 | "flashlight-off": F245, 796 | "flask": F093, 797 | "flask-empty": F094, 798 | "flask-empty-outline": F095, 799 | "flask-outline": F096, 800 | "flattr": F246, 801 | "flip-to-back": F247, 802 | "flip-to-front": F248, 803 | "floppy": F249, 804 | "flower": F24A, 805 | "folder": F24B, 806 | "folder-account": F24C, 807 | "folder-download": F24D, 808 | "folder-google-drive": F24E, 809 | "folder-image": F24F, 810 | "folder-lock": F250, 811 | "folder-lock-open": F251, 812 | "folder-move": F252, 813 | "folder-multiple": F253, 814 | "folder-multiple-image": F254, 815 | "folder-multiple-outline": F255, 816 | "folder-open": F76F, 817 | "folder-outline": F256, 818 | "folder-plus": F257, 819 | "folder-remove": F258, 820 | "folder-star": F69C, 821 | "folder-upload": F259, 822 | "font-awesome": F03A, 823 | "food": F25A, 824 | "food-apple": F25B, 825 | "food-croissant": F7C7, 826 | "food-fork-drink": F5F2, 827 | "food-off": F5F3, 828 | "food-variant": F25C, 829 | "football": F25D, 830 | "football-australian": F25E, 831 | "football-helmet": F25F, 832 | "forklift": F7C8, 833 | "format-align-bottom": F752, 834 | "format-align-center": F260, 835 | "format-align-justify": F261, 836 | "format-align-left": F262, 837 | "format-align-middle": F753, 838 | "format-align-right": F263, 839 | "format-align-top": F754, 840 | "format-annotation-plus": F646, 841 | "format-bold": F264, 842 | "format-clear": F265, 843 | "format-color-fill": F266, 844 | "format-color-text": F69D, 845 | "format-float-center": F267, 846 | "format-float-left": F268, 847 | "format-float-none": F269, 848 | "format-float-right": F26A, 849 | "format-font": F6D5, 850 | "format-header-1": F26B, 851 | "format-header-2": F26C, 852 | "format-header-3": F26D, 853 | "format-header-4": F26E, 854 | "format-header-5": F26F, 855 | "format-header-6": F270, 856 | "format-header-decrease": F271, 857 | "format-header-equal": F272, 858 | "format-header-increase": F273, 859 | "format-header-pound": F274, 860 | "format-horizontal-align-center": F61E, 861 | "format-horizontal-align-left": F61F, 862 | "format-horizontal-align-right": F620, 863 | "format-indent-decrease": F275, 864 | "format-indent-increase": F276, 865 | "format-italic": F277, 866 | "format-line-spacing": F278, 867 | "format-line-style": F5C8, 868 | "format-line-weight": F5C9, 869 | "format-list-bulleted": F279, 870 | "format-list-bulleted-type": F27A, 871 | "format-list-checks": F755, 872 | "format-list-numbers": F27B, 873 | "format-page-break": F6D6, 874 | "format-paint": F27C, 875 | "format-paragraph": F27D, 876 | "format-pilcrow": F6D7, 877 | "format-quote-close": F27E, 878 | "format-quote-open": F756, 879 | "format-rotate-90": F6A9, 880 | "format-section": F69E, 881 | "format-size": F27F, 882 | "format-strikethrough": F280, 883 | "format-strikethrough-variant": F281, 884 | "format-subscript": F282, 885 | "format-superscript": F283, 886 | "format-text": F284, 887 | "format-textdirection-l-to-r": F285, 888 | "format-textdirection-r-to-l": F286, 889 | "format-title": F5F4, 890 | "format-underline": F287, 891 | "format-vertical-align-bottom": F621, 892 | "format-vertical-align-center": F622, 893 | "format-vertical-align-top": F623, 894 | "format-wrap-inline": F288, 895 | "format-wrap-square": F289, 896 | "format-wrap-tight": F28A, 897 | "format-wrap-top-bottom": F28B, 898 | "forum": F28C, 899 | "forward": F28D, 900 | "foursquare": F28E, 901 | "fridge": F28F, 902 | "fridge-filled": F290, 903 | "fridge-filled-bottom": F291, 904 | "fridge-filled-top": F292, 905 | "fuel": F7C9, 906 | "fullscreen": F293, 907 | "fullscreen-exit": F294, 908 | "function": F295, 909 | "gamepad": F296, 910 | "gamepad-variant": F297, 911 | "garage": F6D8, 912 | "garage-open": F6D9, 913 | "gas-cylinder": F647, 914 | "gas-station": F298, 915 | "gate": F299, 916 | "gauge": F29A, 917 | "gavel": F29B, 918 | "gender-female": F29C, 919 | "gender-male": F29D, 920 | "gender-male-female": F29E, 921 | "gender-transgender": F29F, 922 | "gesture": F7CA, 923 | "gesture-double-tap": F73B, 924 | "gesture-swipe-down": F73C, 925 | "gesture-swipe-left": F73D, 926 | "gesture-swipe-right": F73E, 927 | "gesture-swipe-up": F73F, 928 | "gesture-tap": F740, 929 | "gesture-two-double-tap": F741, 930 | "gesture-two-tap": F742, 931 | "ghost": F2A0, 932 | "gift": F2A1, 933 | "git": F2A2, 934 | "github-box": F2A3, 935 | "github-circle": F2A4, 936 | "github-face": F6DA, 937 | "glass-flute": F2A5, 938 | "glass-mug": F2A6, 939 | "glass-stange": F2A7, 940 | "glass-tulip": F2A8, 941 | "glassdoor": F2A9, 942 | "glasses": F2AA, 943 | "gmail": F2AB, 944 | "gnome": F2AC, 945 | "gondola": F685, 946 | "google": F2AD, 947 | "google-analytics": F7CB, 948 | "google-assistant": F7CC, 949 | "google-cardboard": F2AE, 950 | "google-chrome": F2AF, 951 | "google-circles": F2B0, 952 | "google-circles-communities": F2B1, 953 | "google-circles-extended": F2B2, 954 | "google-circles-group": F2B3, 955 | "google-controller": F2B4, 956 | "google-controller-off": F2B5, 957 | "google-drive": F2B6, 958 | "google-earth": F2B7, 959 | "google-glass": F2B8, 960 | "google-keep": F6DB, 961 | "google-maps": F5F5, 962 | "google-nearby": F2B9, 963 | "google-pages": F2BA, 964 | "google-photos": F6DC, 965 | "google-physical-web": F2BB, 966 | "google-play": F2BC, 967 | "google-plus": F2BD, 968 | "google-plus-box": F2BE, 969 | "google-translate": F2BF, 970 | "google-wallet": F2C0, 971 | "gradient": F69F, 972 | "grease-pencil": F648, 973 | "grid": F2C1, 974 | "grid-large": F757, 975 | "grid-off": F2C2, 976 | "group": F2C3, 977 | "guitar-acoustic": F770, 978 | "guitar-electric": F2C4, 979 | "guitar-pick": F2C5, 980 | "guitar-pick-outline": F2C6, 981 | "hackernews": F624, 982 | "hamburger": F684, 983 | "hand-pointing-right": F2C7, 984 | "hanger": F2C8, 985 | "hangouts": F2C9, 986 | "harddisk": F2CA, 987 | "headphones": F2CB, 988 | "headphones-box": F2CC, 989 | "headphones-off": F7CD, 990 | "headphones-settings": F2CD, 991 | "headset": F2CE, 992 | "headset-dock": F2CF, 993 | "headset-off": F2D0, 994 | "heart": F2D1, 995 | "heart-box": F2D2, 996 | "heart-box-outline": F2D3, 997 | "heart-broken": F2D4, 998 | "heart-half": F6DE, 999 | "heart-half-full": F6DD, 1000 | "heart-half-outline": F6DF, 1001 | "heart-off": F758, 1002 | "heart-outline": F2D5, 1003 | "heart-pulse": F5F6, 1004 | "help": F2D6, 1005 | "help-box": F78A, 1006 | "help-circle": F2D7, 1007 | "help-circle-outline": F625, 1008 | "help-network": F6F4, 1009 | "hexagon": F2D8, 1010 | "hexagon-multiple": F6E0, 1011 | "hexagon-outline": F2D9, 1012 | "high-definition": F7CE, 1013 | "highway": F5F7, 1014 | "history": F2DA, 1015 | "hololens": F2DB, 1016 | "home": F2DC, 1017 | "home-assistant": F7CF, 1018 | "home-automation": F7D0, 1019 | "home-circle": F7D1, 1020 | "home-map-marker": F5F8, 1021 | "home-modern": F2DD, 1022 | "home-outline": F6A0, 1023 | "home-variant": F2DE, 1024 | "hook": F6E1, 1025 | "hook-off": F6E2, 1026 | "hops": F2DF, 1027 | "hospital": F2E0, 1028 | "hospital-building": F2E1, 1029 | "hospital-marker": F2E2, 1030 | "hotel": F2E3, 1031 | "houzz": F2E4, 1032 | "houzz-box": F2E5, 1033 | "human": F2E6, 1034 | "human-child": F2E7, 1035 | "human-female": F649, 1036 | "human-greeting": F64A, 1037 | "human-handsdown": F64B, 1038 | "human-handsup": F64C, 1039 | "human-male": F64D, 1040 | "human-male-female": F2E8, 1041 | "human-pregnant": F5CF, 1042 | "humble-bundle": F743, 1043 | "image": F2E9, 1044 | "image-album": F2EA, 1045 | "image-area": F2EB, 1046 | "image-area-close": F2EC, 1047 | "image-broken": F2ED, 1048 | "image-broken-variant": F2EE, 1049 | "image-filter": F2EF, 1050 | "image-filter-black-white": F2F0, 1051 | "image-filter-center-focus": F2F1, 1052 | "image-filter-center-focus-weak": F2F2, 1053 | "image-filter-drama": F2F3, 1054 | "image-filter-frames": F2F4, 1055 | "image-filter-hdr": F2F5, 1056 | "image-filter-none": F2F6, 1057 | "image-filter-tilt-shift": F2F7, 1058 | "image-filter-vintage": F2F8, 1059 | "image-multiple": F2F9, 1060 | "import": F2FA, 1061 | "inbox": F686, 1062 | "inbox-arrow-down": F2FB, 1063 | "inbox-arrow-up": F3D1, 1064 | "incognito": F5F9, 1065 | "infinity": F6E3, 1066 | "information": F2FC, 1067 | "information-outline": F2FD, 1068 | "information-variant": F64E, 1069 | "instagram": F2FE, 1070 | "instapaper": F2FF, 1071 | "internet-explorer": F300, 1072 | "invert-colors": F301, 1073 | "itunes": F676, 1074 | "jeepney": F302, 1075 | "jira": F303, 1076 | "jsfiddle": F304, 1077 | "json": F626, 1078 | "keg": F305, 1079 | "kettle": F5FA, 1080 | "key": F306, 1081 | "key-change": F307, 1082 | "key-minus": F308, 1083 | "key-plus": F309, 1084 | "key-remove": F30A, 1085 | "key-variant": F30B, 1086 | "keyboard": F30C, 1087 | "keyboard-backspace": F30D, 1088 | "keyboard-caps": F30E, 1089 | "keyboard-close": F30F, 1090 | "keyboard-off": F310, 1091 | "keyboard-return": F311, 1092 | "keyboard-tab": F312, 1093 | "keyboard-variant": F313, 1094 | "kickstarter": F744, 1095 | "kodi": F314, 1096 | "label": F315, 1097 | "label-outline": F316, 1098 | "lambda": F627, 1099 | "lamp": F6B4, 1100 | "lan": F317, 1101 | "lan-connect": F318, 1102 | "lan-disconnect": F319, 1103 | "lan-pending": F31A, 1104 | "language-c": F671, 1105 | "language-cpp": F672, 1106 | "language-csharp": F31B, 1107 | "language-css3": F31C, 1108 | "language-go": F7D2, 1109 | "language-html5": F31D, 1110 | "language-javascript": F31E, 1111 | "language-php": F31F, 1112 | "language-python": F320, 1113 | "language-python-text": F321, 1114 | "language-r": F7D3, 1115 | "language-swift": F6E4, 1116 | "language-typescript": F6E5, 1117 | "laptop": F322, 1118 | "laptop-chromebook": F323, 1119 | "laptop-mac": F324, 1120 | "laptop-off": F6E6, 1121 | "laptop-windows": F325, 1122 | "lastfm": F326, 1123 | "launch": F327, 1124 | "lava-lamp": F7D4, 1125 | "layers": F328, 1126 | "layers-off": F329, 1127 | "lead-pencil": F64F, 1128 | "leaf": F32A, 1129 | "led-off": F32B, 1130 | "led-on": F32C, 1131 | "led-outline": F32D, 1132 | "led-strip": F7D5, 1133 | "led-variant-off": F32E, 1134 | "led-variant-on": F32F, 1135 | "led-variant-outline": F330, 1136 | "library": F331, 1137 | "library-books": F332, 1138 | "library-music": F333, 1139 | "library-plus": F334, 1140 | "lightbulb": F335, 1141 | "lightbulb-on": F6E7, 1142 | "lightbulb-on-outline": F6E8, 1143 | "lightbulb-outline": F336, 1144 | "link": F337, 1145 | "link-off": F338, 1146 | "link-variant": F339, 1147 | "link-variant-off": F33A, 1148 | "linkedin": F33B, 1149 | "linkedin-box": F33C, 1150 | "linux": F33D, 1151 | "loading": F771, 1152 | "lock": F33E, 1153 | "lock-open": F33F, 1154 | "lock-open-outline": F340, 1155 | "lock-outline": F341, 1156 | "lock-pattern": F6E9, 1157 | "lock-plus": F5FB, 1158 | "lock-reset": F772, 1159 | "locker": F7D6, 1160 | "locker-multiple": F7D7, 1161 | "login": F342, 1162 | "login-variant": F5FC, 1163 | "logout": F343, 1164 | "logout-variant": F5FD, 1165 | "looks": F344, 1166 | "loop": F6EA, 1167 | "loupe": F345, 1168 | "lumx": F346, 1169 | "magnet": F347, 1170 | "magnet-on": F348, 1171 | "magnify": F349, 1172 | "magnify-minus": F34A, 1173 | "magnify-minus-outline": F6EB, 1174 | "magnify-plus": F34B, 1175 | "magnify-plus-outline": F6EC, 1176 | "mail-ru": F34C, 1177 | "mailbox": F6ED, 1178 | "map": F34D, 1179 | "map-marker": F34E, 1180 | "map-marker-circle": F34F, 1181 | "map-marker-minus": F650, 1182 | "map-marker-multiple": F350, 1183 | "map-marker-off": F351, 1184 | "map-marker-outline": F7D8, 1185 | "map-marker-plus": F651, 1186 | "map-marker-radius": F352, 1187 | "margin": F353, 1188 | "markdown": F354, 1189 | "marker": F652, 1190 | "marker-check": F355, 1191 | "martini": F356, 1192 | "material-ui": F357, 1193 | "math-compass": F358, 1194 | "matrix": F628, 1195 | "maxcdn": F359, 1196 | "medical-bag": F6EE, 1197 | "medium": F35A, 1198 | "memory": F35B, 1199 | "menu": F35C, 1200 | "menu-down": F35D, 1201 | "menu-down-outline": F6B5, 1202 | "menu-left": F35E, 1203 | "menu-right": F35F, 1204 | "menu-up": F360, 1205 | "menu-up-outline": F6B6, 1206 | "message": F361, 1207 | "message-alert": F362, 1208 | "message-bulleted": F6A1, 1209 | "message-bulleted-off": F6A2, 1210 | "message-draw": F363, 1211 | "message-image": F364, 1212 | "message-outline": F365, 1213 | "message-plus": F653, 1214 | "message-processing": F366, 1215 | "message-reply": F367, 1216 | "message-reply-text": F368, 1217 | "message-settings": F6EF, 1218 | "message-settings-variant": F6F0, 1219 | "message-text": F369, 1220 | "message-text-outline": F36A, 1221 | "message-video": F36B, 1222 | "meteor": F629, 1223 | "metronome": F7D9, 1224 | "metronome-tick": F7DA, 1225 | "micro-sd": F7DB, 1226 | "microphone": F36C, 1227 | "microphone-off": F36D, 1228 | "microphone-outline": F36E, 1229 | "microphone-settings": F36F, 1230 | "microphone-variant": F370, 1231 | "microphone-variant-off": F371, 1232 | "microscope": F654, 1233 | "microsoft": F372, 1234 | "minecraft": F373, 1235 | "minus": F374, 1236 | "minus-box": F375, 1237 | "minus-box-outline": F6F1, 1238 | "minus-circle": F376, 1239 | "minus-circle-outline": F377, 1240 | "minus-network": F378, 1241 | "mixcloud": F62A, 1242 | "mixer": F7DC, 1243 | "monitor": F379, 1244 | "monitor-multiple": F37A, 1245 | "more": F37B, 1246 | "motorbike": F37C, 1247 | "mouse": F37D, 1248 | "mouse-off": F37E, 1249 | "mouse-variant": F37F, 1250 | "mouse-variant-off": F380, 1251 | "move-resize": F655, 1252 | "move-resize-variant": F656, 1253 | "movie": F381, 1254 | "movie-roll": F7DD, 1255 | "multiplication": F382, 1256 | "multiplication-box": F383, 1257 | "mushroom": F7DE, 1258 | "mushroom-outline": F7DF, 1259 | "music": F759, 1260 | "music-box": F384, 1261 | "music-box-outline": F385, 1262 | "music-circle": F386, 1263 | "music-note": F387, 1264 | "music-note-bluetooth": F5FE, 1265 | "music-note-bluetooth-off": F5FF, 1266 | "music-note-eighth": F388, 1267 | "music-note-half": F389, 1268 | "music-note-off": F38A, 1269 | "music-note-quarter": F38B, 1270 | "music-note-sixteenth": F38C, 1271 | "music-note-whole": F38D, 1272 | "music-off": F75A, 1273 | "nature": F38E, 1274 | "nature-people": F38F, 1275 | "navigation": F390, 1276 | "near-me": F5CD, 1277 | "needle": F391, 1278 | "nest-protect": F392, 1279 | "nest-thermostat": F393, 1280 | "netflix": F745, 1281 | "network": F6F2, 1282 | "new-box": F394, 1283 | "newspaper": F395, 1284 | "nfc": F396, 1285 | "nfc-tap": F397, 1286 | "nfc-variant": F398, 1287 | "ninja": F773, 1288 | "nintendo-switch": F7E0, 1289 | "nodejs": F399, 1290 | "note": F39A, 1291 | "note-multiple": F6B7, 1292 | "note-multiple-outline": F6B8, 1293 | "note-outline": F39B, 1294 | "note-plus": F39C, 1295 | "note-plus-outline": F39D, 1296 | "note-text": F39E, 1297 | "notification-clear-all": F39F, 1298 | "npm": F6F6, 1299 | "nuke": F6A3, 1300 | "null": F7E1, 1301 | "numeric": F3A0, 1302 | "numeric-0-box": F3A1, 1303 | "numeric-0-box-multiple-outline": F3A2, 1304 | "numeric-0-box-outline": F3A3, 1305 | "numeric-1-box": F3A4, 1306 | "numeric-1-box-multiple-outline": F3A5, 1307 | "numeric-1-box-outline": F3A6, 1308 | "numeric-2-box": F3A7, 1309 | "numeric-2-box-multiple-outline": F3A8, 1310 | "numeric-2-box-outline": F3A9, 1311 | "numeric-3-box": F3AA, 1312 | "numeric-3-box-multiple-outline": F3AB, 1313 | "numeric-3-box-outline": F3AC, 1314 | "numeric-4-box": F3AD, 1315 | "numeric-4-box-multiple-outline": F3AE, 1316 | "numeric-4-box-outline": F3AF, 1317 | "numeric-5-box": F3B0, 1318 | "numeric-5-box-multiple-outline": F3B1, 1319 | "numeric-5-box-outline": F3B2, 1320 | "numeric-6-box": F3B3, 1321 | "numeric-6-box-multiple-outline": F3B4, 1322 | "numeric-6-box-outline": F3B5, 1323 | "numeric-7-box": F3B6, 1324 | "numeric-7-box-multiple-outline": F3B7, 1325 | "numeric-7-box-outline": F3B8, 1326 | "numeric-8-box": F3B9, 1327 | "numeric-8-box-multiple-outline": F3BA, 1328 | "numeric-8-box-outline": F3BB, 1329 | "numeric-9-box": F3BC, 1330 | "numeric-9-box-multiple-outline": F3BD, 1331 | "numeric-9-box-outline": F3BE, 1332 | "numeric-9-plus-box": F3BF, 1333 | "numeric-9-plus-box-multiple-outline": F3C0, 1334 | "numeric-9-plus-box-outline": F3C1, 1335 | "nut": F6F7, 1336 | "nutrition": F3C2, 1337 | "oar": F67B, 1338 | "octagon": F3C3, 1339 | "octagon-outline": F3C4, 1340 | "octagram": F6F8, 1341 | "octagram-outline": F774, 1342 | "odnoklassniki": F3C5, 1343 | "office": F3C6, 1344 | "oil": F3C7, 1345 | "oil-temperature": F3C8, 1346 | "omega": F3C9, 1347 | "onedrive": F3CA, 1348 | "onenote": F746, 1349 | "opacity": F5CC, 1350 | "open-in-app": F3CB, 1351 | "open-in-new": F3CC, 1352 | "openid": F3CD, 1353 | "opera": F3CE, 1354 | "orbit": F018, 1355 | "ornament": F3CF, 1356 | "ornament-variant": F3D0, 1357 | "owl": F3D2, 1358 | "package": F3D3, 1359 | "package-down": F3D4, 1360 | "package-up": F3D5, 1361 | "package-variant": F3D6, 1362 | "package-variant-closed": F3D7, 1363 | "page-first": F600, 1364 | "page-last": F601, 1365 | "page-layout-body": F6F9, 1366 | "page-layout-footer": F6FA, 1367 | "page-layout-header": F6FB, 1368 | "page-layout-sidebar-left": F6FC, 1369 | "page-layout-sidebar-right": F6FD, 1370 | "palette": F3D8, 1371 | "palette-advanced": F3D9, 1372 | "panda": F3DA, 1373 | "pandora": F3DB, 1374 | "panorama": F3DC, 1375 | "panorama-fisheye": F3DD, 1376 | "panorama-horizontal": F3DE, 1377 | "panorama-vertical": F3DF, 1378 | "panorama-wide-angle": F3E0, 1379 | "paper-cut-vertical": F3E1, 1380 | "paperclip": F3E2, 1381 | "parking": F3E3, 1382 | "passport": F7E2, 1383 | "pause": F3E4, 1384 | "pause-circle": F3E5, 1385 | "pause-circle-outline": F3E6, 1386 | "pause-octagon": F3E7, 1387 | "pause-octagon-outline": F3E8, 1388 | "paw": F3E9, 1389 | "paw-off": F657, 1390 | "pen": F3EA, 1391 | "pencil": F3EB, 1392 | "pencil-box": F3EC, 1393 | "pencil-box-outline": F3ED, 1394 | "pencil-circle": F6FE, 1395 | "pencil-circle-outline": F775, 1396 | "pencil-lock": F3EE, 1397 | "pencil-off": F3EF, 1398 | "pentagon": F6FF, 1399 | "pentagon-outline": F700, 1400 | "percent": F3F0, 1401 | "periodic-table-co2": F7E3, 1402 | "periscope": F747, 1403 | "pharmacy": F3F1, 1404 | "phone": F3F2, 1405 | "phone-bluetooth": F3F3, 1406 | "phone-classic": F602, 1407 | "phone-forward": F3F4, 1408 | "phone-hangup": F3F5, 1409 | "phone-in-talk": F3F6, 1410 | "phone-incoming": F3F7, 1411 | "phone-locked": F3F8, 1412 | "phone-log": F3F9, 1413 | "phone-minus": F658, 1414 | "phone-missed": F3FA, 1415 | "phone-outgoing": F3FB, 1416 | "phone-paused": F3FC, 1417 | "phone-plus": F659, 1418 | "phone-settings": F3FD, 1419 | "phone-voip": F3FE, 1420 | "pi": F3FF, 1421 | "pi-box": F400, 1422 | "piano": F67C, 1423 | "pig": F401, 1424 | "pill": F402, 1425 | "pillar": F701, 1426 | "pin": F403, 1427 | "pin-off": F404, 1428 | "pine-tree": F405, 1429 | "pine-tree-box": F406, 1430 | "pinterest": F407, 1431 | "pinterest-box": F408, 1432 | "pipe": F7E4, 1433 | "pipe-disconnected": F7E5, 1434 | "pistol": F702, 1435 | "pizza": F409, 1436 | "plane-shield": F6BA, 1437 | "play": F40A, 1438 | "play-box-outline": F40B, 1439 | "play-circle": F40C, 1440 | "play-circle-outline": F40D, 1441 | "play-pause": F40E, 1442 | "play-protected-content": F40F, 1443 | "playlist-check": F5C7, 1444 | "playlist-minus": F410, 1445 | "playlist-play": F411, 1446 | "playlist-plus": F412, 1447 | "playlist-remove": F413, 1448 | "playstation": F414, 1449 | "plex": F6B9, 1450 | "plus": F415, 1451 | "plus-box": F416, 1452 | "plus-box-outline": F703, 1453 | "plus-circle": F417, 1454 | "plus-circle-multiple-outline": F418, 1455 | "plus-circle-outline": F419, 1456 | "plus-network": F41A, 1457 | "plus-one": F41B, 1458 | "plus-outline": F704, 1459 | "pocket": F41C, 1460 | "pokeball": F41D, 1461 | "polaroid": F41E, 1462 | "poll": F41F, 1463 | "poll-box": F420, 1464 | "polymer": F421, 1465 | "pool": F606, 1466 | "popcorn": F422, 1467 | "pot": F65A, 1468 | "pot-mix": F65B, 1469 | "pound": F423, 1470 | "pound-box": F424, 1471 | "power": F425, 1472 | "power-plug": F6A4, 1473 | "power-plug-off": F6A5, 1474 | "power-settings": F426, 1475 | "power-socket": F427, 1476 | "power-socket-eu": F7E6, 1477 | "power-socket-uk": F7E7, 1478 | "power-socket-us": F7E8, 1479 | "prescription": F705, 1480 | "presentation": F428, 1481 | "presentation-play": F429, 1482 | "printer": F42A, 1483 | "printer-3d": F42B, 1484 | "printer-alert": F42C, 1485 | "printer-settings": F706, 1486 | "priority-high": F603, 1487 | "priority-low": F604, 1488 | "professional-hexagon": F42D, 1489 | "projector": F42E, 1490 | "projector-screen": F42F, 1491 | "publish": F6A6, 1492 | "pulse": F430, 1493 | "puzzle": F431, 1494 | "qqchat": F605, 1495 | "qrcode": F432, 1496 | "qrcode-scan": F433, 1497 | "quadcopter": F434, 1498 | "quality-high": F435, 1499 | "quicktime": F436, 1500 | "radar": F437, 1501 | "radiator": F438, 1502 | "radio": F439, 1503 | "radio-handheld": F43A, 1504 | "radio-tower": F43B, 1505 | "radioactive": F43C, 1506 | "radiobox-blank": F43D, 1507 | "radiobox-marked": F43E, 1508 | "raspberrypi": F43F, 1509 | "ray-end": F440, 1510 | "ray-end-arrow": F441, 1511 | "ray-start": F442, 1512 | "ray-start-arrow": F443, 1513 | "ray-start-end": F444, 1514 | "ray-vertex": F445, 1515 | "rdio": F446, 1516 | "react": F707, 1517 | "read": F447, 1518 | "readability": F448, 1519 | "receipt": F449, 1520 | "record": F44A, 1521 | "record-rec": F44B, 1522 | "recycle": F44C, 1523 | "reddit": F44D, 1524 | "redo": F44E, 1525 | "redo-variant": F44F, 1526 | "refresh": F450, 1527 | "regex": F451, 1528 | "relative-scale": F452, 1529 | "reload": F453, 1530 | "remote": F454, 1531 | "rename-box": F455, 1532 | "reorder-horizontal": F687, 1533 | "reorder-vertical": F688, 1534 | "repeat": F456, 1535 | "repeat-off": F457, 1536 | "repeat-once": F458, 1537 | "replay": F459, 1538 | "reply": F45A, 1539 | "reply-all": F45B, 1540 | "reproduction": F45C, 1541 | "resize-bottom-right": F45D, 1542 | "responsive": F45E, 1543 | "restart": F708, 1544 | "restore": F6A7, 1545 | "rewind": F45F, 1546 | "rewind-outline": F709, 1547 | "rhombus": F70A, 1548 | "rhombus-outline": F70B, 1549 | "ribbon": F460, 1550 | "rice": F7E9, 1551 | "ring": F7EA, 1552 | "road": F461, 1553 | "road-variant": F462, 1554 | "robot": F6A8, 1555 | "rocket": F463, 1556 | "roomba": F70C, 1557 | "rotate-3d": F464, 1558 | "rotate-left": F465, 1559 | "rotate-left-variant": F466, 1560 | "rotate-right": F467, 1561 | "rotate-right-variant": F468, 1562 | "rounded-corner": F607, 1563 | "router-wireless": F469, 1564 | "routes": F46A, 1565 | "rowing": F608, 1566 | "rss": F46B, 1567 | "rss-box": F46C, 1568 | "ruler": F46D, 1569 | "run": F70D, 1570 | "run-fast": F46E, 1571 | "sale": F46F, 1572 | "sass": F7EB, 1573 | "satellite": F470, 1574 | "satellite-variant": F471, 1575 | "saxophone": F609, 1576 | "scale": F472, 1577 | "scale-balance": F5D1, 1578 | "scale-bathroom": F473, 1579 | "scanner": F6AA, 1580 | "school": F474, 1581 | "screen-rotation": F475, 1582 | "screen-rotation-lock": F476, 1583 | "screwdriver": F477, 1584 | "script": F478, 1585 | "sd": F479, 1586 | "seal": F47A, 1587 | "search-web": F70E, 1588 | "seat-flat": F47B, 1589 | "seat-flat-angled": F47C, 1590 | "seat-individual-suite": F47D, 1591 | "seat-legroom-extra": F47E, 1592 | "seat-legroom-normal": F47F, 1593 | "seat-legroom-reduced": F480, 1594 | "seat-recline-extra": F481, 1595 | "seat-recline-normal": F482, 1596 | "security": F483, 1597 | "security-home": F689, 1598 | "security-network": F484, 1599 | "select": F485, 1600 | "select-all": F486, 1601 | "select-inverse": F487, 1602 | "select-off": F488, 1603 | "selection": F489, 1604 | "selection-off": F776, 1605 | "send": F48A, 1606 | "send-secure": F7EC, 1607 | "serial-port": F65C, 1608 | "server": F48B, 1609 | "server-minus": F48C, 1610 | "server-network": F48D, 1611 | "server-network-off": F48E, 1612 | "server-off": F48F, 1613 | "server-plus": F490, 1614 | "server-remove": F491, 1615 | "server-security": F492, 1616 | "set-all": F777, 1617 | "set-center": F778, 1618 | "set-center-right": F779, 1619 | "set-left": F77A, 1620 | "set-left-center": F77B, 1621 | "set-left-right": F77C, 1622 | "set-none": F77D, 1623 | "set-right": F77E, 1624 | "settings": F493, 1625 | "settings-box": F494, 1626 | "shape-circle-plus": F65D, 1627 | "shape-plus": F495, 1628 | "shape-polygon-plus": F65E, 1629 | "shape-rectangle-plus": F65F, 1630 | "shape-square-plus": F660, 1631 | "share": F496, 1632 | "share-variant": F497, 1633 | "shield": F498, 1634 | "shield-half-full": F77F, 1635 | "shield-outline": F499, 1636 | "shopping": F49A, 1637 | "shopping-music": F49B, 1638 | "shovel": F70F, 1639 | "shovel-off": F710, 1640 | "shredder": F49C, 1641 | "shuffle": F49D, 1642 | "shuffle-disabled": F49E, 1643 | "shuffle-variant": F49F, 1644 | "sigma": F4A0, 1645 | "sigma-lower": F62B, 1646 | "sign-caution": F4A1, 1647 | "sign-direction": F780, 1648 | "sign-text": F781, 1649 | "signal": F4A2, 1650 | "signal-2g": F711, 1651 | "signal-3g": F712, 1652 | "signal-4g": F713, 1653 | "signal-hspa": F714, 1654 | "signal-hspa-plus": F715, 1655 | "signal-off": F782, 1656 | "signal-variant": F60A, 1657 | "silverware": F4A3, 1658 | "silverware-fork": F4A4, 1659 | "silverware-spoon": F4A5, 1660 | "silverware-variant": F4A6, 1661 | "sim": F4A7, 1662 | "sim-alert": F4A8, 1663 | "sim-off": F4A9, 1664 | "sitemap": F4AA, 1665 | "skip-backward": F4AB, 1666 | "skip-forward": F4AC, 1667 | "skip-next": F4AD, 1668 | "skip-next-circle": F661, 1669 | "skip-next-circle-outline": F662, 1670 | "skip-previous": F4AE, 1671 | "skip-previous-circle": F663, 1672 | "skip-previous-circle-outline": F664, 1673 | "skull": F68B, 1674 | "skype": F4AF, 1675 | "skype-business": F4B0, 1676 | "slack": F4B1, 1677 | "sleep": F4B2, 1678 | "sleep-off": F4B3, 1679 | "smoking": F4B4, 1680 | "smoking-off": F4B5, 1681 | "snapchat": F4B6, 1682 | "snowflake": F716, 1683 | "snowman": F4B7, 1684 | "soccer": F4B8, 1685 | "sofa": F4B9, 1686 | "solid": F68C, 1687 | "sort": F4BA, 1688 | "sort-alphabetical": F4BB, 1689 | "sort-ascending": F4BC, 1690 | "sort-descending": F4BD, 1691 | "sort-numeric": F4BE, 1692 | "sort-variant": F4BF, 1693 | "soundcloud": F4C0, 1694 | "source-branch": F62C, 1695 | "source-commit": F717, 1696 | "source-commit-end": F718, 1697 | "source-commit-end-local": F719, 1698 | "source-commit-local": F71A, 1699 | "source-commit-next-local": F71B, 1700 | "source-commit-start": F71C, 1701 | "source-commit-start-next-local": F71D, 1702 | "source-fork": F4C1, 1703 | "source-merge": F62D, 1704 | "source-pull": F4C2, 1705 | "soy-sauce": F7ED, 1706 | "speaker": F4C3, 1707 | "speaker-off": F4C4, 1708 | "speaker-wireless": F71E, 1709 | "speedometer": F4C5, 1710 | "spellcheck": F4C6, 1711 | "spotify": F4C7, 1712 | "spotlight": F4C8, 1713 | "spotlight-beam": F4C9, 1714 | "spray": F665, 1715 | "square": F763, 1716 | "square-inc": F4CA, 1717 | "square-inc-cash": F4CB, 1718 | "square-outline": F762, 1719 | "square-root": F783, 1720 | "stackexchange": F60B, 1721 | "stackoverflow": F4CC, 1722 | "stadium": F71F, 1723 | "stairs": F4CD, 1724 | "standard-definition": F7EE, 1725 | "star": F4CE, 1726 | "star-circle": F4CF, 1727 | "star-half": F4D0, 1728 | "star-off": F4D1, 1729 | "star-outline": F4D2, 1730 | "steam": F4D3, 1731 | "steering": F4D4, 1732 | "step-backward": F4D5, 1733 | "step-backward-2": F4D6, 1734 | "step-forward": F4D7, 1735 | "step-forward-2": F4D8, 1736 | "stethoscope": F4D9, 1737 | "sticker": F5D0, 1738 | "sticker-emoji": F784, 1739 | "stocking": F4DA, 1740 | "stop": F4DB, 1741 | "stop-circle": F666, 1742 | "stop-circle-outline": F667, 1743 | "store": F4DC, 1744 | "store-24-hour": F4DD, 1745 | "stove": F4DE, 1746 | "subdirectory-arrow-left": F60C, 1747 | "subdirectory-arrow-right": F60D, 1748 | "subway": F6AB, 1749 | "subway-variant": F4DF, 1750 | "summit": F785, 1751 | "sunglasses": F4E0, 1752 | "surround-sound": F5C5, 1753 | "surround-sound-2-0": F7EF, 1754 | "surround-sound-3-1": F7F0, 1755 | "surround-sound-5-1": F7F1, 1756 | "surround-sound-7-1": F7F2, 1757 | "svg": F720, 1758 | "swap-horizontal": F4E1, 1759 | "swap-vertical": F4E2, 1760 | "swim": F4E3, 1761 | "switch": F4E4, 1762 | "sword": F4E5, 1763 | "sword-cross": F786, 1764 | "sync": F4E6, 1765 | "sync-alert": F4E7, 1766 | "sync-off": F4E8, 1767 | "tab": F4E9, 1768 | "tab-plus": F75B, 1769 | "tab-unselected": F4EA, 1770 | "table": F4EB, 1771 | "table-column-plus-after": F4EC, 1772 | "table-column-plus-before": F4ED, 1773 | "table-column-remove": F4EE, 1774 | "table-column-width": F4EF, 1775 | "table-edit": F4F0, 1776 | "table-large": F4F1, 1777 | "table-row-height": F4F2, 1778 | "table-row-plus-after": F4F3, 1779 | "table-row-plus-before": F4F4, 1780 | "table-row-remove": F4F5, 1781 | "tablet": F4F6, 1782 | "tablet-android": F4F7, 1783 | "tablet-ipad": F4F8, 1784 | "taco": F761, 1785 | "tag": F4F9, 1786 | "tag-faces": F4FA, 1787 | "tag-heart": F68A, 1788 | "tag-multiple": F4FB, 1789 | "tag-outline": F4FC, 1790 | "tag-plus": F721, 1791 | "tag-remove": F722, 1792 | "tag-text-outline": F4FD, 1793 | "target": F4FE, 1794 | "taxi": F4FF, 1795 | "teamviewer": F500, 1796 | "telegram": F501, 1797 | "television": F502, 1798 | "television-classic": F7F3, 1799 | "television-guide": F503, 1800 | "temperature-celsius": F504, 1801 | "temperature-fahrenheit": F505, 1802 | "temperature-kelvin": F506, 1803 | "tennis": F507, 1804 | "tent": F508, 1805 | "terrain": F509, 1806 | "test-tube": F668, 1807 | "text-shadow": F669, 1808 | "text-to-speech": F50A, 1809 | "text-to-speech-off": F50B, 1810 | "textbox": F60E, 1811 | "textbox-password": F7F4, 1812 | "texture": F50C, 1813 | "theater": F50D, 1814 | "theme-light-dark": F50E, 1815 | "thermometer": F50F, 1816 | "thermometer-lines": F510, 1817 | "thought-bubble": F7F5, 1818 | "thought-bubble-outline": F7F6, 1819 | "thumb-down": F511, 1820 | "thumb-down-outline": F512, 1821 | "thumb-up": F513, 1822 | "thumb-up-outline": F514, 1823 | "thumbs-up-down": F515, 1824 | "ticket": F516, 1825 | "ticket-account": F517, 1826 | "ticket-confirmation": F518, 1827 | "ticket-percent": F723, 1828 | "tie": F519, 1829 | "tilde": F724, 1830 | "timelapse": F51A, 1831 | "timer": F51B, 1832 | "timer-10": F51C, 1833 | "timer-3": F51D, 1834 | "timer-off": F51E, 1835 | "timer-sand": F51F, 1836 | "timer-sand-empty": F6AC, 1837 | "timer-sand-full": F78B, 1838 | "timetable": F520, 1839 | "toggle-switch": F521, 1840 | "toggle-switch-off": F522, 1841 | "tooltip": F523, 1842 | "tooltip-edit": F524, 1843 | "tooltip-image": F525, 1844 | "tooltip-outline": F526, 1845 | "tooltip-outline-plus": F527, 1846 | "tooltip-text": F528, 1847 | "tooth": F529, 1848 | "tor": F52A, 1849 | "tower-beach": F680, 1850 | "tower-fire": F681, 1851 | "trackpad": F7F7, 1852 | "traffic-light": F52B, 1853 | "train": F52C, 1854 | "tram": F52D, 1855 | "transcribe": F52E, 1856 | "transcribe-close": F52F, 1857 | "transfer": F530, 1858 | "transit-transfer": F6AD, 1859 | "translate": F5CA, 1860 | "treasure-chest": F725, 1861 | "tree": F531, 1862 | "trello": F532, 1863 | "trending-down": F533, 1864 | "trending-neutral": F534, 1865 | "trending-up": F535, 1866 | "triangle": F536, 1867 | "triangle-outline": F537, 1868 | "trophy": F538, 1869 | "trophy-award": F539, 1870 | "trophy-outline": F53A, 1871 | "trophy-variant": F53B, 1872 | "trophy-variant-outline": F53C, 1873 | "truck": F53D, 1874 | "truck-delivery": F53E, 1875 | "truck-fast": F787, 1876 | "truck-trailer": F726, 1877 | "tshirt-crew": F53F, 1878 | "tshirt-v": F540, 1879 | "tumblr": F541, 1880 | "tumblr-reblog": F542, 1881 | "tune": F62E, 1882 | "tune-vertical": F66A, 1883 | "twitch": F543, 1884 | "twitter": F544, 1885 | "twitter-box": F545, 1886 | "twitter-circle": F546, 1887 | "twitter-retweet": F547, 1888 | "uber": F748, 1889 | "ubuntu": F548, 1890 | "ultra-high-definition": F7F8, 1891 | "umbraco": F549, 1892 | "umbrella": F54A, 1893 | "umbrella-outline": F54B, 1894 | "undo": F54C, 1895 | "undo-variant": F54D, 1896 | "unfold-less-horizontal": F54E, 1897 | "unfold-less-vertical": F75F, 1898 | "unfold-more-horizontal": F54F, 1899 | "unfold-more-vertical": F760, 1900 | "ungroup": F550, 1901 | "unity": F6AE, 1902 | "untappd": F551, 1903 | "update": F6AF, 1904 | "upload": F552, 1905 | "upload-network": F6F5, 1906 | "usb": F553, 1907 | "van-passenger": F7F9, 1908 | "van-utility": F7FA, 1909 | "vanish": F7FB, 1910 | "vector-arrange-above": F554, 1911 | "vector-arrange-below": F555, 1912 | "vector-circle": F556, 1913 | "vector-circle-variant": F557, 1914 | "vector-combine": F558, 1915 | "vector-curve": F559, 1916 | "vector-difference": F55A, 1917 | "vector-difference-ab": F55B, 1918 | "vector-difference-ba": F55C, 1919 | "vector-intersection": F55D, 1920 | "vector-line": F55E, 1921 | "vector-point": F55F, 1922 | "vector-polygon": F560, 1923 | "vector-polyline": F561, 1924 | "vector-radius": F749, 1925 | "vector-rectangle": F5C6, 1926 | "vector-selection": F562, 1927 | "vector-square": F001, 1928 | "vector-triangle": F563, 1929 | "vector-union": F564, 1930 | "verified": F565, 1931 | "vibrate": F566, 1932 | "video": F567, 1933 | "video-3d": F7FC, 1934 | "video-off": F568, 1935 | "video-switch": F569, 1936 | "view-agenda": F56A, 1937 | "view-array": F56B, 1938 | "view-carousel": F56C, 1939 | "view-column": F56D, 1940 | "view-dashboard": F56E, 1941 | "view-day": F56F, 1942 | "view-grid": F570, 1943 | "view-headline": F571, 1944 | "view-list": F572, 1945 | "view-module": F573, 1946 | "view-parallel": F727, 1947 | "view-quilt": F574, 1948 | "view-sequential": F728, 1949 | "view-stream": F575, 1950 | "view-week": F576, 1951 | "vimeo": F577, 1952 | "vine": F578, 1953 | "violin": F60F, 1954 | "visualstudio": F610, 1955 | "vk": F579, 1956 | "vk-box": F57A, 1957 | "vk-circle": F57B, 1958 | "vlc": F57C, 1959 | "voice": F5CB, 1960 | "voicemail": F57D, 1961 | "volume-high": F57E, 1962 | "volume-low": F57F, 1963 | "volume-medium": F580, 1964 | "volume-minus": F75D, 1965 | "volume-mute": F75E, 1966 | "volume-off": F581, 1967 | "volume-plus": F75C, 1968 | "vpn": F582, 1969 | "walk": F583, 1970 | "wall": F7FD, 1971 | "wallet": F584, 1972 | "wallet-giftcard": F585, 1973 | "wallet-membership": F586, 1974 | "wallet-travel": F587, 1975 | "wan": F588, 1976 | "washing-machine": F729, 1977 | "watch": F589, 1978 | "watch-export": F58A, 1979 | "watch-import": F58B, 1980 | "watch-vibrate": F6B0, 1981 | "water": F58C, 1982 | "water-off": F58D, 1983 | "water-percent": F58E, 1984 | "water-pump": F58F, 1985 | "watermark": F612, 1986 | "waves": F78C, 1987 | "weather-cloudy": F590, 1988 | "weather-fog": F591, 1989 | "weather-hail": F592, 1990 | "weather-lightning": F593, 1991 | "weather-lightning-rainy": F67D, 1992 | "weather-night": F594, 1993 | "weather-partlycloudy": F595, 1994 | "weather-pouring": F596, 1995 | "weather-rainy": F597, 1996 | "weather-snowy": F598, 1997 | "weather-snowy-rainy": F67E, 1998 | "weather-sunny": F599, 1999 | "weather-sunset": F59A, 2000 | "weather-sunset-down": F59B, 2001 | "weather-sunset-up": F59C, 2002 | "weather-windy": F59D, 2003 | "weather-windy-variant": F59E, 2004 | "web": F59F, 2005 | "webcam": F5A0, 2006 | "webhook": F62F, 2007 | "webpack": F72A, 2008 | "wechat": F611, 2009 | "weight": F5A1, 2010 | "weight-kilogram": F5A2, 2011 | "whatsapp": F5A3, 2012 | "wheelchair-accessibility": F5A4, 2013 | "white-balance-auto": F5A5, 2014 | "white-balance-incandescent": F5A6, 2015 | "white-balance-iridescent": F5A7, 2016 | "white-balance-sunny": F5A8, 2017 | "widgets": F72B, 2018 | "wifi": F5A9, 2019 | "wifi-off": F5AA, 2020 | "wii": F5AB, 2021 | "wiiu": F72C, 2022 | "wikipedia": F5AC, 2023 | "window-close": F5AD, 2024 | "window-closed": F5AE, 2025 | "window-maximize": F5AF, 2026 | "window-minimize": F5B0, 2027 | "window-open": F5B1, 2028 | "window-restore": F5B2, 2029 | "windows": F5B3, 2030 | "wordpress": F5B4, 2031 | "worker": F5B5, 2032 | "wrap": F5B6, 2033 | "wrench": F5B7, 2034 | "wunderlist": F5B8, 2035 | "xaml": F673, 2036 | "xbox": F5B9, 2037 | "xbox-controller": F5BA, 2038 | "xbox-controller-battery-alert": F74A, 2039 | "xbox-controller-battery-empty": F74B, 2040 | "xbox-controller-battery-full": F74C, 2041 | "xbox-controller-battery-low": F74D, 2042 | "xbox-controller-battery-medium": F74E, 2043 | "xbox-controller-battery-unknown": F74F, 2044 | "xbox-controller-off": F5BB, 2045 | "xda": F5BC, 2046 | "xing": F5BD, 2047 | "xing-box": F5BE, 2048 | "xing-circle": F5BF, 2049 | "xml": F5C0, 2050 | "xmpp": F7FE, 2051 | "yammer": F788, 2052 | "yeast": F5C1, 2053 | "yelp": F5C2, 2054 | "yin-yang": F67F, 2055 | "youtube-play": F5C3, 2056 | "zip-box": F5C4 2057 | ); -------------------------------------------------------------------------------- /MaterialDesign-Webfont-master/scss/materialdesignicons.scss: -------------------------------------------------------------------------------- 1 | /* MaterialDesignIcons.com */ 2 | @import "variables"; 3 | @import "functions"; 4 | @import "path"; 5 | @import "core"; 6 | @import "icons"; 7 | @import "extras"; 8 | @import "animated"; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Index of MDI Icons that are suitable for Home Assistant 2 | 3 | This project is based on the preview.html from the MDI webfont hosted here https://materialdesignicons.com/getting-started 4 | I have kept all the files from the original webfont and added the following: 5 | 6 | - home-assistant-mdi.html: renders the index 7 | - HA_MDI_JSON.xlsx: my tool to create the JSON used by JS in home-assistant-mdi.html 8 | - Updated the readme 9 | 10 | ## Installation 11 | The following was tested with HA running in Docker on Ubuntu. 12 | I am currently running with no SSL/TLS, so not tested with HTTPS. 13 | 14 | ### Easy Method - use raw.githack.com (now that rawgit is closing down): 15 | - Edit your HA configuration.yaml file to add an iframe using rawgit direct URL to my repo: 16 | ```yaml 17 | panel_iframe: 18 | mdiindex: 19 | title: MDI Icon Index 20 | icon: mdi:vector-square 21 | url: https://raw.githack.com/james-fry/home-assistant-mdi/master/home-assistant-mdi.html 22 | ``` 23 | - Restart Home Assistant to pick up the new panel_iframe, which will add a MDI icon on the panel 24 | 25 | ### Harder Method - clone my GH repo locally 26 | - cd to HL local www folder - typically this is located (or needs to be created) in the same directory as your HA config files 27 | - Clone the repo into the HA local www folder: *git clone https://github.com/james-fry/home-assistant-mdi* 28 | - Edit your HA configuration.yaml file to add an iframe pointing to local file home-assistant-mdi html: 29 | ```yaml 30 | panel_iframe: 31 | mdiindex: 32 | title: MDI Icon Index 33 | icon: mdi:vector-square 34 | url: http://localhost:8123/local/home-assistant-mdi/home-assistant-mdi.html 35 | ``` 36 | - Restart Home Assistant to pick up the new panel_iframe, which will add a MDI icon on the panel 37 | 38 | You should see this: 39 | 40 | ![Missing image showing Home Assistant with the MDI Icon Index](https://github.com/james-fry/home-assistant-mdi/raw/master/images/ha_mdi.png "Home Assistant with the MDI Icon Index") 41 | 42 | ## Usage 43 | 44 | - Click on the MDI icon on HA panel to open the index 45 | - Browse to find an appropriate icon for your sensor/device/room etc 46 | - Click the icon or mdi:name to copy the icon name (with mdi: prefix) ready to paste into config yaml etc 47 | 48 | ## To Do 49 | 50 | - Fully list weather icons 51 | - Fully list battery icons 52 | - Fix non-printing icos (if possible) 53 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mdi", 3 | "version": "2.0.46", 4 | "main": [ 5 | "scss/materialdesignicons.scss" 6 | ], 7 | "homepage": "http://materialdesignicons.com", 8 | "authors": [ 9 | { "name": "Austin Andrews", "homepage": "http://templarian.com" }, 10 | { "name": "Google", "homepage": "http://www.google.com/design" } 11 | ], 12 | "license": ["OFL-1.1", "MIT"], 13 | "ignore": [ 14 | "*.md", 15 | "*.json" 16 | ], 17 | "keywords": [ 18 | "material", 19 | "design", 20 | "icons", 21 | "webfont" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /home-assistant-mdi.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Material Design Icons for Home Assistant 6 | 176 | 177 | 178 | 179 |

180 | 181 | 182 | 183 | Material Design Icons for Home Assistant 184 | v2.O.46 185 |

186 | 187 |

Icons (click icon/name to copy Home Assistant mdi: name to clipboard)

188 |
189 | 190 | 191 | 192 | 676 | 677 | 678 | 679 | -------------------------------------------------------------------------------- /images/ha_mdi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fry/home-assistant-mdi/6d8ff5030c034ce3d17e3eb19c11ccc81699dd5f/images/ha_mdi.png -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/), 2 | with Reserved Font Name Material Design Icons. 3 | 4 | Copyright (c) 2014, Google (http://www.google.com/design/) 5 | uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE 6 | 7 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 8 | This license is copied below, and is also available with a FAQ at: 9 | http://scripts.sil.org/OFL 10 | 11 | 12 | ----------------------------------------------------------- 13 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 14 | ----------------------------------------------------------- 15 | 16 | PREAMBLE 17 | The goals of the Open Font License (OFL) are to stimulate worldwide 18 | development of collaborative font projects, to support the font creation 19 | efforts of academic and linguistic communities, and to provide a free and 20 | open framework in which fonts may be shared and improved in partnership 21 | with others. 22 | 23 | The OFL allows the licensed fonts to be used, studied, modified and 24 | redistributed freely as long as they are not sold by themselves. The 25 | fonts, including any derivative works, can be bundled, embedded, 26 | redistributed and/or sold with any software provided that any reserved 27 | names are not used by derivative works. The fonts and derivatives, 28 | however, cannot be released under any other type of license. The 29 | requirement for fonts to remain under this license does not apply 30 | to any document created using the fonts or their derivatives. 31 | 32 | DEFINITIONS 33 | "Font Software" refers to the set of files released by the Copyright 34 | Holder(s) under this license and clearly marked as such. This may 35 | include source files, build scripts and documentation. 36 | 37 | "Reserved Font Name" refers to any names specified as such after the 38 | copyright statement(s). 39 | 40 | "Original Version" refers to the collection of Font Software components as 41 | distributed by the Copyright Holder(s). 42 | 43 | "Modified Version" refers to any derivative made by adding to, deleting, 44 | or substituting -- in part or in whole -- any of the components of the 45 | Original Version, by changing formats or by porting the Font Software to a 46 | new environment. 47 | 48 | "Author" refers to any designer, engineer, programmer, technical 49 | writer or other person who contributed to the Font Software. 50 | 51 | PERMISSION & CONDITIONS 52 | Permission is hereby granted, free of charge, to any person obtaining 53 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 54 | redistribute, and sell modified and unmodified copies of the Font 55 | Software, subject to the following conditions: 56 | 57 | 1) Neither the Font Software nor any of its individual components, 58 | in Original or Modified Versions, may be sold by itself. 59 | 60 | 2) Original or Modified Versions of the Font Software may be bundled, 61 | redistributed and/or sold with any software, provided that each copy 62 | contains the above copyright notice and this license. These can be 63 | included either as stand-alone text files, human-readable headers or 64 | in the appropriate machine-readable metadata fields within text or 65 | binary files as long as those fields can be easily viewed by the user. 66 | 67 | 3) No Modified Version of the Font Software may use the Reserved Font 68 | Name(s) unless explicit written permission is granted by the corresponding 69 | Copyright Holder. This restriction only applies to the primary font name as 70 | presented to the users. 71 | 72 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 73 | Software shall not be used to promote, endorse or advertise any 74 | Modified Version, except to acknowledge the contribution(s) of the 75 | Copyright Holder(s) and the Author(s) or with their explicit written 76 | permission. 77 | 78 | 5) The Font Software, modified or unmodified, in part or in whole, 79 | must be distributed entirely under this license, and must not be 80 | distributed under any other license. The requirement for fonts to 81 | remain under this license does not apply to any document created 82 | using the Font Software. 83 | 84 | TERMINATION 85 | This license becomes null and void if any of the above conditions are 86 | not met. 87 | 88 | DISCLAIMER 89 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 90 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 91 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 92 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 93 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 94 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 95 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 96 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 97 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mdi", 3 | "version": "2.0.46", 4 | "description": "Dist for Material Design Webfont. This includes the Stock and Community icons in a single webfont collection.", 5 | "main": "preview.html", 6 | "style": "css/materialdesignicons.css", 7 | "scripts": { 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/Templarian/MaterialDesign-Webfont.git" 13 | }, 14 | "keywords": [ 15 | "material", 16 | "design", 17 | "icons", 18 | "webfont" 19 | ], 20 | "author": { 21 | "name": "Austin Andrews", 22 | "web": "http://twitter.com/templarian" 23 | }, 24 | "licenses": [ 25 | { 26 | "type": "OFL-1.1", 27 | "url": "http://scripts.sil.org/OFL" 28 | }, 29 | { 30 | "type": "MIT", 31 | "url": "http://opensource.org/licenses/mit-license.html" 32 | } 33 | ], 34 | "bugs": { 35 | "url": "https://github.com/Templarian/MaterialDesign/issues" 36 | }, 37 | "homepage": "http://materialdesignicons.com" 38 | } 39 | -------------------------------------------------------------------------------- /scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // From Font Awesome 2 | .#{$mdi-css-prefix}-spin:before { 3 | -webkit-animation: #{$mdi-css-prefix}-spin 2s infinite linear; 4 | animation: #{$mdi-css-prefix}-spin 2s infinite linear; 5 | } 6 | 7 | @-webkit-keyframes #{$mdi-css-prefix}-spin { 8 | 0% { 9 | -webkit-transform: rotate(0deg); 10 | transform: rotate(0deg); 11 | } 12 | 100% { 13 | -webkit-transform: rotate(359deg); 14 | transform: rotate(359deg); 15 | } 16 | } 17 | 18 | @keyframes #{$mdi-css-prefix}-spin { 19 | 0% { 20 | -webkit-transform: rotate(0deg); 21 | transform: rotate(0deg); 22 | } 23 | 100% { 24 | -webkit-transform: rotate(359deg); 25 | transform: rotate(359deg); 26 | } 27 | } -------------------------------------------------------------------------------- /scss/_core.scss: -------------------------------------------------------------------------------- 1 | .#{$mdi-css-prefix}:before, 2 | .#{$mdi-css-prefix}-set { 3 | display: inline-block; 4 | font: normal normal normal #{$mdi-font-size-base}/1 '#{$mdi-font-name}'; // shortening font declaration 5 | font-size: inherit; // can't have font-size inherit on line above, so need to override 6 | text-rendering: auto; // optimizelegibility throws things off #1094 7 | line-height: inherit; 8 | -webkit-font-smoothing: antialiased; 9 | -moz-osx-font-smoothing: grayscale; 10 | } -------------------------------------------------------------------------------- /scss/_extras.scss: -------------------------------------------------------------------------------- 1 | $sizes: 18 24 36 48; 2 | @each $size in $sizes { 3 | .#{$mdi-css-prefix}-#{$size}px { 4 | &.#{$mdi-css-prefix}-set, 5 | &.#{$mdi-css-prefix}:before { 6 | font-size: $size * 1px; 7 | } 8 | } 9 | } 10 | 11 | .#{$mdi-css-prefix}-dark { 12 | &:before { 13 | color: rgba(0, 0, 0, 0.54); 14 | } 15 | &.mdi-inactive:before { 16 | color: rgba(0, 0, 0, 0.26); 17 | } 18 | } 19 | .#{$mdi-css-prefix}-light { 20 | &:before { 21 | color: rgba(255, 255, 255, 1); 22 | } 23 | &.mdi-inactive:before { 24 | color: rgba(255, 255, 255, 0.3); 25 | } 26 | } 27 | 28 | $degrees: 45 90 135 180 225 270 315; 29 | @each $degree in $degrees { 30 | .#{$mdi-css-prefix}-rotate-#{$degree}{ 31 | &:before { 32 | -webkit-transform: rotate(#{$degree}deg); 33 | -ms-transform: rotate(#{$degree}deg); 34 | transform: rotate(#{$degree}deg); 35 | } 36 | /* 37 | // Not included in production 38 | &.#{$mdi-css-prefix}-flip-h:before { 39 | -webkit-transform: scaleX(-1) rotate(#{$degree}deg); 40 | transform: scaleX(-1) rotate(#{$degree}deg); 41 | filter: FlipH; 42 | -ms-filter: "FlipH"; 43 | } 44 | &.#{$mdi-css-prefix}-flip-v:before { 45 | -webkit-transform: scaleY(-1) rotate(#{$degree}deg); 46 | -ms-transform: rotate(#{$degree}deg); 47 | transform: scaleY(-1) rotate(#{$degree}deg); 48 | filter: FlipV; 49 | -ms-filter: "FlipV"; 50 | } 51 | */ 52 | } 53 | } 54 | .#{$mdi-css-prefix}-flip-h:before { 55 | -webkit-transform: scaleX(-1); 56 | transform: scaleX(-1); 57 | filter: FlipH; 58 | -ms-filter: "FlipH"; 59 | } 60 | .#{$mdi-css-prefix}-flip-v:before { 61 | -webkit-transform: scaleY(-1); 62 | transform: scaleY(-1); 63 | filter: FlipV; 64 | -ms-filter: "FlipV"; 65 | } -------------------------------------------------------------------------------- /scss/_functions.scss: -------------------------------------------------------------------------------- 1 | @function char($character-code) { 2 | @if function-exists("selector-append") { 3 | @return unquote("\"\\#{$character-code}\""); 4 | } 5 | 6 | @if "\\#{'x'}" == "\\x" { 7 | @return str-slice("\x", 1, 1) + $character-code; 8 | } 9 | @else { 10 | @return #{"\"\\"}#{$character-code + "\""}; 11 | } 12 | } 13 | 14 | @function mdi($name) { 15 | @if map-has-key($mdi-icons, $name) == false { 16 | @warn "Icon #{$name} not found."; 17 | @return ""; 18 | } 19 | @return char(map-get($mdi-icons, $name)); 20 | } -------------------------------------------------------------------------------- /scss/_icons.scss: -------------------------------------------------------------------------------- 1 | @each $key, $value in $mdi-icons { 2 | .#{$mdi-css-prefix}-#{$key}:before { 3 | content: char($value); 4 | } 5 | } 6 | 7 | .#{$mdi-css-prefix}-blank:before { 8 | content: "\F68C"; 9 | visibility: hidden; 10 | } -------------------------------------------------------------------------------- /scss/_path.scss: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: '#{$mdi-font-name}'; 3 | src: url('#{$mdi-font-path}/#{$mdi-filename}-webfont.eot?v=#{$mdi-version}'); 4 | src: url('#{$mdi-font-path}/#{$mdi-filename}-webfont.eot?#iefix&v=#{$mdi-version}') format('embedded-opentype'), 5 | url('#{$mdi-font-path}/#{$mdi-filename}-webfont.woff2?v=#{$mdi-version}') format('woff2'), 6 | url('#{$mdi-font-path}/#{$mdi-filename}-webfont.woff?v=#{$mdi-version}') format('woff'), 7 | url('#{$mdi-font-path}/#{$mdi-filename}-webfont.ttf?v=#{$mdi-version}') format('truetype'), 8 | url('#{$mdi-font-path}/#{$mdi-filename}-webfont.svg?v=#{$mdi-version}##{$mdi-filename}#{$mdi-font-weight}') format('svg'); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | -------------------------------------------------------------------------------- /scss/_variables.scss: -------------------------------------------------------------------------------- 1 | $mdi-filename: "materialdesignicons"; 2 | $mdi-font-name: "Material Design Icons"; 3 | $mdi-font-family: "materialdesignicons"; 4 | $mdi-font-weight: "regular"; 5 | $mdi-font-path: "../fonts" !default; 6 | $mdi-font-size-base: 24px !default; 7 | $mdi-css-prefix: mdi !default; 8 | $mdi-version: "2.0.46" !default; 9 | 10 | $mdi-icons: ( 11 | "access-point": F002, 12 | "access-point-network": F003, 13 | "account": F004, 14 | "account-alert": F005, 15 | "account-box": F006, 16 | "account-box-outline": F007, 17 | "account-card-details": F5D2, 18 | "account-check": F008, 19 | "account-circle": F009, 20 | "account-convert": F00A, 21 | "account-edit": F6BB, 22 | "account-key": F00B, 23 | "account-location": F00C, 24 | "account-minus": F00D, 25 | "account-multiple": F00E, 26 | "account-multiple-minus": F5D3, 27 | "account-multiple-outline": F00F, 28 | "account-multiple-plus": F010, 29 | "account-network": F011, 30 | "account-off": F012, 31 | "account-outline": F013, 32 | "account-plus": F014, 33 | "account-remove": F015, 34 | "account-search": F016, 35 | "account-settings": F630, 36 | "account-settings-variant": F631, 37 | "account-star": F017, 38 | "account-switch": F019, 39 | "adjust": F01A, 40 | "air-conditioner": F01B, 41 | "airballoon": F01C, 42 | "airplane": F01D, 43 | "airplane-landing": F5D4, 44 | "airplane-off": F01E, 45 | "airplane-takeoff": F5D5, 46 | "airplay": F01F, 47 | "alarm": F020, 48 | "alarm-bell": F78D, 49 | "alarm-check": F021, 50 | "alarm-light": F78E, 51 | "alarm-multiple": F022, 52 | "alarm-off": F023, 53 | "alarm-plus": F024, 54 | "alarm-snooze": F68D, 55 | "album": F025, 56 | "alert": F026, 57 | "alert-box": F027, 58 | "alert-circle": F028, 59 | "alert-circle-outline": F5D6, 60 | "alert-decagram": F6BC, 61 | "alert-octagon": F029, 62 | "alert-octagram": F766, 63 | "alert-outline": F02A, 64 | "all-inclusive": F6BD, 65 | "alpha": F02B, 66 | "alphabetical": F02C, 67 | "altimeter": F5D7, 68 | "amazon": F02D, 69 | "amazon-clouddrive": F02E, 70 | "ambulance": F02F, 71 | "amplifier": F030, 72 | "anchor": F031, 73 | "android": F032, 74 | "android-debug-bridge": F033, 75 | "android-head": F78F, 76 | "android-studio": F034, 77 | "angular": F6B1, 78 | "angularjs": F6BE, 79 | "animation": F5D8, 80 | "apple": F035, 81 | "apple-finder": F036, 82 | "apple-ios": F037, 83 | "apple-keyboard-caps": F632, 84 | "apple-keyboard-command": F633, 85 | "apple-keyboard-control": F634, 86 | "apple-keyboard-option": F635, 87 | "apple-keyboard-shift": F636, 88 | "apple-mobileme": F038, 89 | "apple-safari": F039, 90 | "application": F614, 91 | "approval": F790, 92 | "apps": F03B, 93 | "archive": F03C, 94 | "arrange-bring-forward": F03D, 95 | "arrange-bring-to-front": F03E, 96 | "arrange-send-backward": F03F, 97 | "arrange-send-to-back": F040, 98 | "arrow-all": F041, 99 | "arrow-bottom-left": F042, 100 | "arrow-bottom-right": F043, 101 | "arrow-collapse": F615, 102 | "arrow-collapse-all": F044, 103 | "arrow-collapse-down": F791, 104 | "arrow-collapse-left": F792, 105 | "arrow-collapse-right": F793, 106 | "arrow-collapse-up": F794, 107 | "arrow-down": F045, 108 | "arrow-down-bold": F72D, 109 | "arrow-down-bold-box": F72E, 110 | "arrow-down-bold-box-outline": F72F, 111 | "arrow-down-bold-circle": F047, 112 | "arrow-down-bold-circle-outline": F048, 113 | "arrow-down-bold-hexagon-outline": F049, 114 | "arrow-down-box": F6BF, 115 | "arrow-down-drop-circle": F04A, 116 | "arrow-down-drop-circle-outline": F04B, 117 | "arrow-down-thick": F046, 118 | "arrow-expand": F616, 119 | "arrow-expand-all": F04C, 120 | "arrow-expand-down": F795, 121 | "arrow-expand-left": F796, 122 | "arrow-expand-right": F797, 123 | "arrow-expand-up": F798, 124 | "arrow-left": F04D, 125 | "arrow-left-bold": F730, 126 | "arrow-left-bold-box": F731, 127 | "arrow-left-bold-box-outline": F732, 128 | "arrow-left-bold-circle": F04F, 129 | "arrow-left-bold-circle-outline": F050, 130 | "arrow-left-bold-hexagon-outline": F051, 131 | "arrow-left-box": F6C0, 132 | "arrow-left-drop-circle": F052, 133 | "arrow-left-drop-circle-outline": F053, 134 | "arrow-left-thick": F04E, 135 | "arrow-right": F054, 136 | "arrow-right-bold": F733, 137 | "arrow-right-bold-box": F734, 138 | "arrow-right-bold-box-outline": F735, 139 | "arrow-right-bold-circle": F056, 140 | "arrow-right-bold-circle-outline": F057, 141 | "arrow-right-bold-hexagon-outline": F058, 142 | "arrow-right-box": F6C1, 143 | "arrow-right-drop-circle": F059, 144 | "arrow-right-drop-circle-outline": F05A, 145 | "arrow-right-thick": F055, 146 | "arrow-top-left": F05B, 147 | "arrow-top-right": F05C, 148 | "arrow-up": F05D, 149 | "arrow-up-bold": F736, 150 | "arrow-up-bold-box": F737, 151 | "arrow-up-bold-box-outline": F738, 152 | "arrow-up-bold-circle": F05F, 153 | "arrow-up-bold-circle-outline": F060, 154 | "arrow-up-bold-hexagon-outline": F061, 155 | "arrow-up-box": F6C2, 156 | "arrow-up-drop-circle": F062, 157 | "arrow-up-drop-circle-outline": F063, 158 | "arrow-up-thick": F05E, 159 | "assistant": F064, 160 | "asterisk": F6C3, 161 | "at": F065, 162 | "atom": F767, 163 | "attachment": F066, 164 | "audiobook": F067, 165 | "auto-fix": F068, 166 | "auto-upload": F069, 167 | "autorenew": F06A, 168 | "av-timer": F06B, 169 | "baby": F06C, 170 | "baby-buggy": F68E, 171 | "backburger": F06D, 172 | "backspace": F06E, 173 | "backup-restore": F06F, 174 | "bandcamp": F674, 175 | "bank": F070, 176 | "barcode": F071, 177 | "barcode-scan": F072, 178 | "barley": F073, 179 | "barrel": F074, 180 | "basecamp": F075, 181 | "basket": F076, 182 | "basket-fill": F077, 183 | "basket-unfill": F078, 184 | "battery": F079, 185 | "battery-10": F07A, 186 | "battery-20": F07B, 187 | "battery-30": F07C, 188 | "battery-40": F07D, 189 | "battery-50": F07E, 190 | "battery-60": F07F, 191 | "battery-70": F080, 192 | "battery-80": F081, 193 | "battery-90": F082, 194 | "battery-alert": F083, 195 | "battery-charging": F084, 196 | "battery-charging-100": F085, 197 | "battery-charging-20": F086, 198 | "battery-charging-30": F087, 199 | "battery-charging-40": F088, 200 | "battery-charging-60": F089, 201 | "battery-charging-80": F08A, 202 | "battery-charging-90": F08B, 203 | "battery-minus": F08C, 204 | "battery-negative": F08D, 205 | "battery-outline": F08E, 206 | "battery-plus": F08F, 207 | "battery-positive": F090, 208 | "battery-unknown": F091, 209 | "beach": F092, 210 | "beaker": F68F, 211 | "beats": F097, 212 | "beer": F098, 213 | "behance": F099, 214 | "bell": F09A, 215 | "bell-off": F09B, 216 | "bell-outline": F09C, 217 | "bell-plus": F09D, 218 | "bell-ring": F09E, 219 | "bell-ring-outline": F09F, 220 | "bell-sleep": F0A0, 221 | "beta": F0A1, 222 | "bible": F0A2, 223 | "bike": F0A3, 224 | "bing": F0A4, 225 | "binoculars": F0A5, 226 | "bio": F0A6, 227 | "biohazard": F0A7, 228 | "bitbucket": F0A8, 229 | "black-mesa": F0A9, 230 | "blackberry": F0AA, 231 | "blender": F0AB, 232 | "blinds": F0AC, 233 | "block-helper": F0AD, 234 | "blogger": F0AE, 235 | "bluetooth": F0AF, 236 | "bluetooth-audio": F0B0, 237 | "bluetooth-connect": F0B1, 238 | "bluetooth-off": F0B2, 239 | "bluetooth-settings": F0B3, 240 | "bluetooth-transfer": F0B4, 241 | "blur": F0B5, 242 | "blur-linear": F0B6, 243 | "blur-off": F0B7, 244 | "blur-radial": F0B8, 245 | "bomb": F690, 246 | "bomb-off": F6C4, 247 | "bone": F0B9, 248 | "book": F0BA, 249 | "book-minus": F5D9, 250 | "book-multiple": F0BB, 251 | "book-multiple-variant": F0BC, 252 | "book-open": F0BD, 253 | "book-open-page-variant": F5DA, 254 | "book-open-variant": F0BE, 255 | "book-plus": F5DB, 256 | "book-secure": F799, 257 | "book-unsecure": F79A, 258 | "book-variant": F0BF, 259 | "bookmark": F0C0, 260 | "bookmark-check": F0C1, 261 | "bookmark-music": F0C2, 262 | "bookmark-outline": F0C3, 263 | "bookmark-plus": F0C5, 264 | "bookmark-plus-outline": F0C4, 265 | "bookmark-remove": F0C6, 266 | "boombox": F5DC, 267 | "bootstrap": F6C5, 268 | "border-all": F0C7, 269 | "border-bottom": F0C8, 270 | "border-color": F0C9, 271 | "border-horizontal": F0CA, 272 | "border-inside": F0CB, 273 | "border-left": F0CC, 274 | "border-none": F0CD, 275 | "border-outside": F0CE, 276 | "border-right": F0CF, 277 | "border-style": F0D0, 278 | "border-top": F0D1, 279 | "border-vertical": F0D2, 280 | "bow-tie": F677, 281 | "bowl": F617, 282 | "bowling": F0D3, 283 | "box": F0D4, 284 | "box-cutter": F0D5, 285 | "box-shadow": F637, 286 | "bridge": F618, 287 | "briefcase": F0D6, 288 | "briefcase-check": F0D7, 289 | "briefcase-download": F0D8, 290 | "briefcase-upload": F0D9, 291 | "brightness-1": F0DA, 292 | "brightness-2": F0DB, 293 | "brightness-3": F0DC, 294 | "brightness-4": F0DD, 295 | "brightness-5": F0DE, 296 | "brightness-6": F0DF, 297 | "brightness-7": F0E0, 298 | "brightness-auto": F0E1, 299 | "broom": F0E2, 300 | "brush": F0E3, 301 | "buffer": F619, 302 | "bug": F0E4, 303 | "bulletin-board": F0E5, 304 | "bullhorn": F0E6, 305 | "bullseye": F5DD, 306 | "burst-mode": F5DE, 307 | "bus": F0E7, 308 | "bus-articulated-end": F79B, 309 | "bus-articulated-front": F79C, 310 | "bus-double-decker": F79D, 311 | "bus-school": F79E, 312 | "bus-side": F79F, 313 | "cached": F0E8, 314 | "cake": F0E9, 315 | "cake-layered": F0EA, 316 | "cake-variant": F0EB, 317 | "calculator": F0EC, 318 | "calendar": F0ED, 319 | "calendar-blank": F0EE, 320 | "calendar-check": F0EF, 321 | "calendar-clock": F0F0, 322 | "calendar-multiple": F0F1, 323 | "calendar-multiple-check": F0F2, 324 | "calendar-plus": F0F3, 325 | "calendar-question": F691, 326 | "calendar-range": F678, 327 | "calendar-remove": F0F4, 328 | "calendar-text": F0F5, 329 | "calendar-today": F0F6, 330 | "call-made": F0F7, 331 | "call-merge": F0F8, 332 | "call-missed": F0F9, 333 | "call-received": F0FA, 334 | "call-split": F0FB, 335 | "camcorder": F0FC, 336 | "camcorder-box": F0FD, 337 | "camcorder-box-off": F0FE, 338 | "camcorder-off": F0FF, 339 | "camera": F100, 340 | "camera-burst": F692, 341 | "camera-enhance": F101, 342 | "camera-front": F102, 343 | "camera-front-variant": F103, 344 | "camera-gopro": F7A0, 345 | "camera-iris": F104, 346 | "camera-metering-center": F7A1, 347 | "camera-metering-matrix": F7A2, 348 | "camera-metering-partial": F7A3, 349 | "camera-metering-spot": F7A4, 350 | "camera-off": F5DF, 351 | "camera-party-mode": F105, 352 | "camera-rear": F106, 353 | "camera-rear-variant": F107, 354 | "camera-switch": F108, 355 | "camera-timer": F109, 356 | "cancel": F739, 357 | "candle": F5E2, 358 | "candycane": F10A, 359 | "cannabis": F7A5, 360 | "car": F10B, 361 | "car-battery": F10C, 362 | "car-connected": F10D, 363 | "car-convertable": F7A6, 364 | "car-estate": F7A7, 365 | "car-hatchback": F7A8, 366 | "car-pickup": F7A9, 367 | "car-side": F7AA, 368 | "car-sports": F7AB, 369 | "car-wash": F10E, 370 | "caravan": F7AC, 371 | "cards": F638, 372 | "cards-outline": F639, 373 | "cards-playing-outline": F63A, 374 | "cards-variant": F6C6, 375 | "carrot": F10F, 376 | "cart": F110, 377 | "cart-off": F66B, 378 | "cart-outline": F111, 379 | "cart-plus": F112, 380 | "case-sensitive-alt": F113, 381 | "cash": F114, 382 | "cash-100": F115, 383 | "cash-multiple": F116, 384 | "cash-usd": F117, 385 | "cast": F118, 386 | "cast-connected": F119, 387 | "cast-off": F789, 388 | "castle": F11A, 389 | "cat": F11B, 390 | "cctv": F7AD, 391 | "ceiling-light": F768, 392 | "cellphone": F11C, 393 | "cellphone-android": F11D, 394 | "cellphone-basic": F11E, 395 | "cellphone-dock": F11F, 396 | "cellphone-iphone": F120, 397 | "cellphone-link": F121, 398 | "cellphone-link-off": F122, 399 | "cellphone-settings": F123, 400 | "certificate": F124, 401 | "chair-school": F125, 402 | "chart-arc": F126, 403 | "chart-areaspline": F127, 404 | "chart-bar": F128, 405 | "chart-bar-stacked": F769, 406 | "chart-bubble": F5E3, 407 | "chart-donut": F7AE, 408 | "chart-donut-variant": F7AF, 409 | "chart-gantt": F66C, 410 | "chart-histogram": F129, 411 | "chart-line": F12A, 412 | "chart-line-stacked": F76A, 413 | "chart-line-variant": F7B0, 414 | "chart-pie": F12B, 415 | "chart-scatterplot-hexbin": F66D, 416 | "chart-timeline": F66E, 417 | "check": F12C, 418 | "check-all": F12D, 419 | "check-circle": F5E0, 420 | "check-circle-outline": F5E1, 421 | "checkbox-blank": F12E, 422 | "checkbox-blank-circle": F12F, 423 | "checkbox-blank-circle-outline": F130, 424 | "checkbox-blank-outline": F131, 425 | "checkbox-marked": F132, 426 | "checkbox-marked-circle": F133, 427 | "checkbox-marked-circle-outline": F134, 428 | "checkbox-marked-outline": F135, 429 | "checkbox-multiple-blank": F136, 430 | "checkbox-multiple-blank-circle": F63B, 431 | "checkbox-multiple-blank-circle-outline": F63C, 432 | "checkbox-multiple-blank-outline": F137, 433 | "checkbox-multiple-marked": F138, 434 | "checkbox-multiple-marked-circle": F63D, 435 | "checkbox-multiple-marked-circle-outline": F63E, 436 | "checkbox-multiple-marked-outline": F139, 437 | "checkerboard": F13A, 438 | "chemical-weapon": F13B, 439 | "chevron-double-down": F13C, 440 | "chevron-double-left": F13D, 441 | "chevron-double-right": F13E, 442 | "chevron-double-up": F13F, 443 | "chevron-down": F140, 444 | "chevron-left": F141, 445 | "chevron-right": F142, 446 | "chevron-up": F143, 447 | "chili-hot": F7B1, 448 | "chili-medium": F7B2, 449 | "chili-mild": F7B3, 450 | "chip": F61A, 451 | "church": F144, 452 | "circle": F764, 453 | "circle-outline": F765, 454 | "cisco-webex": F145, 455 | "city": F146, 456 | "clipboard": F147, 457 | "clipboard-account": F148, 458 | "clipboard-alert": F149, 459 | "clipboard-arrow-down": F14A, 460 | "clipboard-arrow-left": F14B, 461 | "clipboard-check": F14C, 462 | "clipboard-flow": F6C7, 463 | "clipboard-outline": F14D, 464 | "clipboard-plus": F750, 465 | "clipboard-text": F14E, 466 | "clippy": F14F, 467 | "clock": F150, 468 | "clock-alert": F5CE, 469 | "clock-end": F151, 470 | "clock-fast": F152, 471 | "clock-in": F153, 472 | "clock-out": F154, 473 | "clock-start": F155, 474 | "close": F156, 475 | "close-box": F157, 476 | "close-box-outline": F158, 477 | "close-circle": F159, 478 | "close-circle-outline": F15A, 479 | "close-network": F15B, 480 | "close-octagon": F15C, 481 | "close-octagon-outline": F15D, 482 | "close-outline": F6C8, 483 | "closed-caption": F15E, 484 | "cloud": F15F, 485 | "cloud-braces": F7B4, 486 | "cloud-check": F160, 487 | "cloud-circle": F161, 488 | "cloud-download": F162, 489 | "cloud-off-outline": F164, 490 | "cloud-outline": F163, 491 | "cloud-print": F165, 492 | "cloud-print-outline": F166, 493 | "cloud-sync": F63F, 494 | "cloud-tags": F7B5, 495 | "cloud-upload": F167, 496 | "code-array": F168, 497 | "code-braces": F169, 498 | "code-brackets": F16A, 499 | "code-equal": F16B, 500 | "code-greater-than": F16C, 501 | "code-greater-than-or-equal": F16D, 502 | "code-less-than": F16E, 503 | "code-less-than-or-equal": F16F, 504 | "code-not-equal": F170, 505 | "code-not-equal-variant": F171, 506 | "code-parentheses": F172, 507 | "code-string": F173, 508 | "code-tags": F174, 509 | "code-tags-check": F693, 510 | "codepen": F175, 511 | "coffee": F176, 512 | "coffee-outline": F6C9, 513 | "coffee-to-go": F177, 514 | "coin": F178, 515 | "coins": F694, 516 | "collage": F640, 517 | "color-helper": F179, 518 | "comment": F17A, 519 | "comment-account": F17B, 520 | "comment-account-outline": F17C, 521 | "comment-alert": F17D, 522 | "comment-alert-outline": F17E, 523 | "comment-check": F17F, 524 | "comment-check-outline": F180, 525 | "comment-multiple-outline": F181, 526 | "comment-outline": F182, 527 | "comment-plus-outline": F183, 528 | "comment-processing": F184, 529 | "comment-processing-outline": F185, 530 | "comment-question-outline": F186, 531 | "comment-remove-outline": F187, 532 | "comment-text": F188, 533 | "comment-text-outline": F189, 534 | "compare": F18A, 535 | "compass": F18B, 536 | "compass-outline": F18C, 537 | "console": F18D, 538 | "console-line": F7B6, 539 | "contact-mail": F18E, 540 | "contacts": F6CA, 541 | "content-copy": F18F, 542 | "content-cut": F190, 543 | "content-duplicate": F191, 544 | "content-paste": F192, 545 | "content-save": F193, 546 | "content-save-all": F194, 547 | "content-save-settings": F61B, 548 | "contrast": F195, 549 | "contrast-box": F196, 550 | "contrast-circle": F197, 551 | "cookie": F198, 552 | "copyright": F5E6, 553 | "corn": F7B7, 554 | "counter": F199, 555 | "cow": F19A, 556 | "creation": F1C9, 557 | "credit-card": F19B, 558 | "credit-card-multiple": F19C, 559 | "credit-card-off": F5E4, 560 | "credit-card-plus": F675, 561 | "credit-card-scan": F19D, 562 | "crop": F19E, 563 | "crop-free": F19F, 564 | "crop-landscape": F1A0, 565 | "crop-portrait": F1A1, 566 | "crop-rotate": F695, 567 | "crop-square": F1A2, 568 | "crosshairs": F1A3, 569 | "crosshairs-gps": F1A4, 570 | "crown": F1A5, 571 | "cube": F1A6, 572 | "cube-outline": F1A7, 573 | "cube-send": F1A8, 574 | "cube-unfolded": F1A9, 575 | "cup": F1AA, 576 | "cup-off": F5E5, 577 | "cup-water": F1AB, 578 | "currency-btc": F1AC, 579 | "currency-chf": F7B8, 580 | "currency-cny": F7B9, 581 | "currency-eth": F7BA, 582 | "currency-eur": F1AD, 583 | "currency-gbp": F1AE, 584 | "currency-inr": F1AF, 585 | "currency-jpy": F7BB, 586 | "currency-krw": F7BC, 587 | "currency-ngn": F1B0, 588 | "currency-rub": F1B1, 589 | "currency-sign": F7BD, 590 | "currency-try": F1B2, 591 | "currency-twd": F7BE, 592 | "currency-usd": F1B3, 593 | "currency-usd-off": F679, 594 | "cursor-default": F1B4, 595 | "cursor-default-outline": F1B5, 596 | "cursor-move": F1B6, 597 | "cursor-pointer": F1B7, 598 | "cursor-text": F5E7, 599 | "database": F1B8, 600 | "database-minus": F1B9, 601 | "database-plus": F1BA, 602 | "debug-step-into": F1BB, 603 | "debug-step-out": F1BC, 604 | "debug-step-over": F1BD, 605 | "decagram": F76B, 606 | "decagram-outline": F76C, 607 | "decimal-decrease": F1BE, 608 | "decimal-increase": F1BF, 609 | "delete": F1C0, 610 | "delete-circle": F682, 611 | "delete-empty": F6CB, 612 | "delete-forever": F5E8, 613 | "delete-sweep": F5E9, 614 | "delete-variant": F1C1, 615 | "delta": F1C2, 616 | "deskphone": F1C3, 617 | "desktop-classic": F7BF, 618 | "desktop-mac": F1C4, 619 | "desktop-tower": F1C5, 620 | "details": F1C6, 621 | "developer-board": F696, 622 | "deviantart": F1C7, 623 | "dialpad": F61C, 624 | "diamond": F1C8, 625 | "dice-1": F1CA, 626 | "dice-2": F1CB, 627 | "dice-3": F1CC, 628 | "dice-4": F1CD, 629 | "dice-5": F1CE, 630 | "dice-6": F1CF, 631 | "dice-d10": F76E, 632 | "dice-d20": F5EA, 633 | "dice-d4": F5EB, 634 | "dice-d6": F5EC, 635 | "dice-d8": F5ED, 636 | "dice-multiple": F76D, 637 | "dictionary": F61D, 638 | "dip-switch": F7C0, 639 | "directions": F1D0, 640 | "directions-fork": F641, 641 | "discord": F66F, 642 | "disk": F5EE, 643 | "disk-alert": F1D1, 644 | "disqus": F1D2, 645 | "disqus-outline": F1D3, 646 | "division": F1D4, 647 | "division-box": F1D5, 648 | "dna": F683, 649 | "dns": F1D6, 650 | "do-not-disturb": F697, 651 | "do-not-disturb-off": F698, 652 | "dolby": F6B2, 653 | "domain": F1D7, 654 | "donkey": F7C1, 655 | "dots-horizontal": F1D8, 656 | "dots-horizontal-circle": F7C2, 657 | "dots-vertical": F1D9, 658 | "dots-vertical-circle": F7C3, 659 | "douban": F699, 660 | "download": F1DA, 661 | "download-network": F6F3, 662 | "drag": F1DB, 663 | "drag-horizontal": F1DC, 664 | "drag-vertical": F1DD, 665 | "drawing": F1DE, 666 | "drawing-box": F1DF, 667 | "dribbble": F1E0, 668 | "dribbble-box": F1E1, 669 | "drone": F1E2, 670 | "dropbox": F1E3, 671 | "drupal": F1E4, 672 | "duck": F1E5, 673 | "dumbbell": F1E6, 674 | "ear-hearing": F7C4, 675 | "earth": F1E7, 676 | "earth-box": F6CC, 677 | "earth-box-off": F6CD, 678 | "earth-off": F1E8, 679 | "edge": F1E9, 680 | "eject": F1EA, 681 | "elephant": F7C5, 682 | "elevation-decline": F1EB, 683 | "elevation-rise": F1EC, 684 | "elevator": F1ED, 685 | "email": F1EE, 686 | "email-alert": F6CE, 687 | "email-open": F1EF, 688 | "email-open-outline": F5EF, 689 | "email-outline": F1F0, 690 | "email-secure": F1F1, 691 | "email-variant": F5F0, 692 | "emby": F6B3, 693 | "emoticon": F1F2, 694 | "emoticon-cool": F1F3, 695 | "emoticon-dead": F69A, 696 | "emoticon-devil": F1F4, 697 | "emoticon-excited": F69B, 698 | "emoticon-happy": F1F5, 699 | "emoticon-neutral": F1F6, 700 | "emoticon-poop": F1F7, 701 | "emoticon-sad": F1F8, 702 | "emoticon-tongue": F1F9, 703 | "engine": F1FA, 704 | "engine-outline": F1FB, 705 | "equal": F1FC, 706 | "equal-box": F1FD, 707 | "eraser": F1FE, 708 | "eraser-variant": F642, 709 | "escalator": F1FF, 710 | "ethernet": F200, 711 | "ethernet-cable": F201, 712 | "ethernet-cable-off": F202, 713 | "etsy": F203, 714 | "ev-station": F5F1, 715 | "eventbrite": F7C6, 716 | "evernote": F204, 717 | "exclamation": F205, 718 | "exit-to-app": F206, 719 | "export": F207, 720 | "eye": F208, 721 | "eye-off": F209, 722 | "eye-off-outline": F6D0, 723 | "eye-outline": F6CF, 724 | "eyedropper": F20A, 725 | "eyedropper-variant": F20B, 726 | "face": F643, 727 | "face-profile": F644, 728 | "facebook": F20C, 729 | "facebook-box": F20D, 730 | "facebook-messenger": F20E, 731 | "factory": F20F, 732 | "fan": F210, 733 | "fast-forward": F211, 734 | "fast-forward-outline": F6D1, 735 | "fax": F212, 736 | "feather": F6D2, 737 | "ferry": F213, 738 | "file": F214, 739 | "file-account": F73A, 740 | "file-chart": F215, 741 | "file-check": F216, 742 | "file-cloud": F217, 743 | "file-delimited": F218, 744 | "file-document": F219, 745 | "file-document-box": F21A, 746 | "file-excel": F21B, 747 | "file-excel-box": F21C, 748 | "file-export": F21D, 749 | "file-find": F21E, 750 | "file-hidden": F613, 751 | "file-image": F21F, 752 | "file-import": F220, 753 | "file-lock": F221, 754 | "file-multiple": F222, 755 | "file-music": F223, 756 | "file-outline": F224, 757 | "file-pdf": F225, 758 | "file-pdf-box": F226, 759 | "file-plus": F751, 760 | "file-powerpoint": F227, 761 | "file-powerpoint-box": F228, 762 | "file-presentation-box": F229, 763 | "file-restore": F670, 764 | "file-send": F22A, 765 | "file-tree": F645, 766 | "file-video": F22B, 767 | "file-word": F22C, 768 | "file-word-box": F22D, 769 | "file-xml": F22E, 770 | "film": F22F, 771 | "filmstrip": F230, 772 | "filmstrip-off": F231, 773 | "filter": F232, 774 | "filter-outline": F233, 775 | "filter-remove": F234, 776 | "filter-remove-outline": F235, 777 | "filter-variant": F236, 778 | "find-replace": F6D3, 779 | "fingerprint": F237, 780 | "fire": F238, 781 | "firefox": F239, 782 | "fish": F23A, 783 | "flag": F23B, 784 | "flag-checkered": F23C, 785 | "flag-outline": F23D, 786 | "flag-outline-variant": F23E, 787 | "flag-triangle": F23F, 788 | "flag-variant": F240, 789 | "flash": F241, 790 | "flash-auto": F242, 791 | "flash-off": F243, 792 | "flash-outline": F6D4, 793 | "flash-red-eye": F67A, 794 | "flashlight": F244, 795 | "flashlight-off": F245, 796 | "flask": F093, 797 | "flask-empty": F094, 798 | "flask-empty-outline": F095, 799 | "flask-outline": F096, 800 | "flattr": F246, 801 | "flip-to-back": F247, 802 | "flip-to-front": F248, 803 | "floppy": F249, 804 | "flower": F24A, 805 | "folder": F24B, 806 | "folder-account": F24C, 807 | "folder-download": F24D, 808 | "folder-google-drive": F24E, 809 | "folder-image": F24F, 810 | "folder-lock": F250, 811 | "folder-lock-open": F251, 812 | "folder-move": F252, 813 | "folder-multiple": F253, 814 | "folder-multiple-image": F254, 815 | "folder-multiple-outline": F255, 816 | "folder-open": F76F, 817 | "folder-outline": F256, 818 | "folder-plus": F257, 819 | "folder-remove": F258, 820 | "folder-star": F69C, 821 | "folder-upload": F259, 822 | "font-awesome": F03A, 823 | "food": F25A, 824 | "food-apple": F25B, 825 | "food-croissant": F7C7, 826 | "food-fork-drink": F5F2, 827 | "food-off": F5F3, 828 | "food-variant": F25C, 829 | "football": F25D, 830 | "football-australian": F25E, 831 | "football-helmet": F25F, 832 | "forklift": F7C8, 833 | "format-align-bottom": F752, 834 | "format-align-center": F260, 835 | "format-align-justify": F261, 836 | "format-align-left": F262, 837 | "format-align-middle": F753, 838 | "format-align-right": F263, 839 | "format-align-top": F754, 840 | "format-annotation-plus": F646, 841 | "format-bold": F264, 842 | "format-clear": F265, 843 | "format-color-fill": F266, 844 | "format-color-text": F69D, 845 | "format-float-center": F267, 846 | "format-float-left": F268, 847 | "format-float-none": F269, 848 | "format-float-right": F26A, 849 | "format-font": F6D5, 850 | "format-header-1": F26B, 851 | "format-header-2": F26C, 852 | "format-header-3": F26D, 853 | "format-header-4": F26E, 854 | "format-header-5": F26F, 855 | "format-header-6": F270, 856 | "format-header-decrease": F271, 857 | "format-header-equal": F272, 858 | "format-header-increase": F273, 859 | "format-header-pound": F274, 860 | "format-horizontal-align-center": F61E, 861 | "format-horizontal-align-left": F61F, 862 | "format-horizontal-align-right": F620, 863 | "format-indent-decrease": F275, 864 | "format-indent-increase": F276, 865 | "format-italic": F277, 866 | "format-line-spacing": F278, 867 | "format-line-style": F5C8, 868 | "format-line-weight": F5C9, 869 | "format-list-bulleted": F279, 870 | "format-list-bulleted-type": F27A, 871 | "format-list-checks": F755, 872 | "format-list-numbers": F27B, 873 | "format-page-break": F6D6, 874 | "format-paint": F27C, 875 | "format-paragraph": F27D, 876 | "format-pilcrow": F6D7, 877 | "format-quote-close": F27E, 878 | "format-quote-open": F756, 879 | "format-rotate-90": F6A9, 880 | "format-section": F69E, 881 | "format-size": F27F, 882 | "format-strikethrough": F280, 883 | "format-strikethrough-variant": F281, 884 | "format-subscript": F282, 885 | "format-superscript": F283, 886 | "format-text": F284, 887 | "format-textdirection-l-to-r": F285, 888 | "format-textdirection-r-to-l": F286, 889 | "format-title": F5F4, 890 | "format-underline": F287, 891 | "format-vertical-align-bottom": F621, 892 | "format-vertical-align-center": F622, 893 | "format-vertical-align-top": F623, 894 | "format-wrap-inline": F288, 895 | "format-wrap-square": F289, 896 | "format-wrap-tight": F28A, 897 | "format-wrap-top-bottom": F28B, 898 | "forum": F28C, 899 | "forward": F28D, 900 | "foursquare": F28E, 901 | "fridge": F28F, 902 | "fridge-filled": F290, 903 | "fridge-filled-bottom": F291, 904 | "fridge-filled-top": F292, 905 | "fuel": F7C9, 906 | "fullscreen": F293, 907 | "fullscreen-exit": F294, 908 | "function": F295, 909 | "gamepad": F296, 910 | "gamepad-variant": F297, 911 | "garage": F6D8, 912 | "garage-open": F6D9, 913 | "gas-cylinder": F647, 914 | "gas-station": F298, 915 | "gate": F299, 916 | "gauge": F29A, 917 | "gavel": F29B, 918 | "gender-female": F29C, 919 | "gender-male": F29D, 920 | "gender-male-female": F29E, 921 | "gender-transgender": F29F, 922 | "gesture": F7CA, 923 | "gesture-double-tap": F73B, 924 | "gesture-swipe-down": F73C, 925 | "gesture-swipe-left": F73D, 926 | "gesture-swipe-right": F73E, 927 | "gesture-swipe-up": F73F, 928 | "gesture-tap": F740, 929 | "gesture-two-double-tap": F741, 930 | "gesture-two-tap": F742, 931 | "ghost": F2A0, 932 | "gift": F2A1, 933 | "git": F2A2, 934 | "github-box": F2A3, 935 | "github-circle": F2A4, 936 | "github-face": F6DA, 937 | "glass-flute": F2A5, 938 | "glass-mug": F2A6, 939 | "glass-stange": F2A7, 940 | "glass-tulip": F2A8, 941 | "glassdoor": F2A9, 942 | "glasses": F2AA, 943 | "gmail": F2AB, 944 | "gnome": F2AC, 945 | "gondola": F685, 946 | "google": F2AD, 947 | "google-analytics": F7CB, 948 | "google-assistant": F7CC, 949 | "google-cardboard": F2AE, 950 | "google-chrome": F2AF, 951 | "google-circles": F2B0, 952 | "google-circles-communities": F2B1, 953 | "google-circles-extended": F2B2, 954 | "google-circles-group": F2B3, 955 | "google-controller": F2B4, 956 | "google-controller-off": F2B5, 957 | "google-drive": F2B6, 958 | "google-earth": F2B7, 959 | "google-glass": F2B8, 960 | "google-keep": F6DB, 961 | "google-maps": F5F5, 962 | "google-nearby": F2B9, 963 | "google-pages": F2BA, 964 | "google-photos": F6DC, 965 | "google-physical-web": F2BB, 966 | "google-play": F2BC, 967 | "google-plus": F2BD, 968 | "google-plus-box": F2BE, 969 | "google-translate": F2BF, 970 | "google-wallet": F2C0, 971 | "gradient": F69F, 972 | "grease-pencil": F648, 973 | "grid": F2C1, 974 | "grid-large": F757, 975 | "grid-off": F2C2, 976 | "group": F2C3, 977 | "guitar-acoustic": F770, 978 | "guitar-electric": F2C4, 979 | "guitar-pick": F2C5, 980 | "guitar-pick-outline": F2C6, 981 | "hackernews": F624, 982 | "hamburger": F684, 983 | "hand-pointing-right": F2C7, 984 | "hanger": F2C8, 985 | "hangouts": F2C9, 986 | "harddisk": F2CA, 987 | "headphones": F2CB, 988 | "headphones-box": F2CC, 989 | "headphones-off": F7CD, 990 | "headphones-settings": F2CD, 991 | "headset": F2CE, 992 | "headset-dock": F2CF, 993 | "headset-off": F2D0, 994 | "heart": F2D1, 995 | "heart-box": F2D2, 996 | "heart-box-outline": F2D3, 997 | "heart-broken": F2D4, 998 | "heart-half": F6DE, 999 | "heart-half-full": F6DD, 1000 | "heart-half-outline": F6DF, 1001 | "heart-off": F758, 1002 | "heart-outline": F2D5, 1003 | "heart-pulse": F5F6, 1004 | "help": F2D6, 1005 | "help-box": F78A, 1006 | "help-circle": F2D7, 1007 | "help-circle-outline": F625, 1008 | "help-network": F6F4, 1009 | "hexagon": F2D8, 1010 | "hexagon-multiple": F6E0, 1011 | "hexagon-outline": F2D9, 1012 | "high-definition": F7CE, 1013 | "highway": F5F7, 1014 | "history": F2DA, 1015 | "hololens": F2DB, 1016 | "home": F2DC, 1017 | "home-assistant": F7CF, 1018 | "home-automation": F7D0, 1019 | "home-circle": F7D1, 1020 | "home-map-marker": F5F8, 1021 | "home-modern": F2DD, 1022 | "home-outline": F6A0, 1023 | "home-variant": F2DE, 1024 | "hook": F6E1, 1025 | "hook-off": F6E2, 1026 | "hops": F2DF, 1027 | "hospital": F2E0, 1028 | "hospital-building": F2E1, 1029 | "hospital-marker": F2E2, 1030 | "hotel": F2E3, 1031 | "houzz": F2E4, 1032 | "houzz-box": F2E5, 1033 | "human": F2E6, 1034 | "human-child": F2E7, 1035 | "human-female": F649, 1036 | "human-greeting": F64A, 1037 | "human-handsdown": F64B, 1038 | "human-handsup": F64C, 1039 | "human-male": F64D, 1040 | "human-male-female": F2E8, 1041 | "human-pregnant": F5CF, 1042 | "humble-bundle": F743, 1043 | "image": F2E9, 1044 | "image-album": F2EA, 1045 | "image-area": F2EB, 1046 | "image-area-close": F2EC, 1047 | "image-broken": F2ED, 1048 | "image-broken-variant": F2EE, 1049 | "image-filter": F2EF, 1050 | "image-filter-black-white": F2F0, 1051 | "image-filter-center-focus": F2F1, 1052 | "image-filter-center-focus-weak": F2F2, 1053 | "image-filter-drama": F2F3, 1054 | "image-filter-frames": F2F4, 1055 | "image-filter-hdr": F2F5, 1056 | "image-filter-none": F2F6, 1057 | "image-filter-tilt-shift": F2F7, 1058 | "image-filter-vintage": F2F8, 1059 | "image-multiple": F2F9, 1060 | "import": F2FA, 1061 | "inbox": F686, 1062 | "inbox-arrow-down": F2FB, 1063 | "inbox-arrow-up": F3D1, 1064 | "incognito": F5F9, 1065 | "infinity": F6E3, 1066 | "information": F2FC, 1067 | "information-outline": F2FD, 1068 | "information-variant": F64E, 1069 | "instagram": F2FE, 1070 | "instapaper": F2FF, 1071 | "internet-explorer": F300, 1072 | "invert-colors": F301, 1073 | "itunes": F676, 1074 | "jeepney": F302, 1075 | "jira": F303, 1076 | "jsfiddle": F304, 1077 | "json": F626, 1078 | "keg": F305, 1079 | "kettle": F5FA, 1080 | "key": F306, 1081 | "key-change": F307, 1082 | "key-minus": F308, 1083 | "key-plus": F309, 1084 | "key-remove": F30A, 1085 | "key-variant": F30B, 1086 | "keyboard": F30C, 1087 | "keyboard-backspace": F30D, 1088 | "keyboard-caps": F30E, 1089 | "keyboard-close": F30F, 1090 | "keyboard-off": F310, 1091 | "keyboard-return": F311, 1092 | "keyboard-tab": F312, 1093 | "keyboard-variant": F313, 1094 | "kickstarter": F744, 1095 | "kodi": F314, 1096 | "label": F315, 1097 | "label-outline": F316, 1098 | "lambda": F627, 1099 | "lamp": F6B4, 1100 | "lan": F317, 1101 | "lan-connect": F318, 1102 | "lan-disconnect": F319, 1103 | "lan-pending": F31A, 1104 | "language-c": F671, 1105 | "language-cpp": F672, 1106 | "language-csharp": F31B, 1107 | "language-css3": F31C, 1108 | "language-go": F7D2, 1109 | "language-html5": F31D, 1110 | "language-javascript": F31E, 1111 | "language-php": F31F, 1112 | "language-python": F320, 1113 | "language-python-text": F321, 1114 | "language-r": F7D3, 1115 | "language-swift": F6E4, 1116 | "language-typescript": F6E5, 1117 | "laptop": F322, 1118 | "laptop-chromebook": F323, 1119 | "laptop-mac": F324, 1120 | "laptop-off": F6E6, 1121 | "laptop-windows": F325, 1122 | "lastfm": F326, 1123 | "launch": F327, 1124 | "lava-lamp": F7D4, 1125 | "layers": F328, 1126 | "layers-off": F329, 1127 | "lead-pencil": F64F, 1128 | "leaf": F32A, 1129 | "led-off": F32B, 1130 | "led-on": F32C, 1131 | "led-outline": F32D, 1132 | "led-strip": F7D5, 1133 | "led-variant-off": F32E, 1134 | "led-variant-on": F32F, 1135 | "led-variant-outline": F330, 1136 | "library": F331, 1137 | "library-books": F332, 1138 | "library-music": F333, 1139 | "library-plus": F334, 1140 | "lightbulb": F335, 1141 | "lightbulb-on": F6E7, 1142 | "lightbulb-on-outline": F6E8, 1143 | "lightbulb-outline": F336, 1144 | "link": F337, 1145 | "link-off": F338, 1146 | "link-variant": F339, 1147 | "link-variant-off": F33A, 1148 | "linkedin": F33B, 1149 | "linkedin-box": F33C, 1150 | "linux": F33D, 1151 | "loading": F771, 1152 | "lock": F33E, 1153 | "lock-open": F33F, 1154 | "lock-open-outline": F340, 1155 | "lock-outline": F341, 1156 | "lock-pattern": F6E9, 1157 | "lock-plus": F5FB, 1158 | "lock-reset": F772, 1159 | "locker": F7D6, 1160 | "locker-multiple": F7D7, 1161 | "login": F342, 1162 | "login-variant": F5FC, 1163 | "logout": F343, 1164 | "logout-variant": F5FD, 1165 | "looks": F344, 1166 | "loop": F6EA, 1167 | "loupe": F345, 1168 | "lumx": F346, 1169 | "magnet": F347, 1170 | "magnet-on": F348, 1171 | "magnify": F349, 1172 | "magnify-minus": F34A, 1173 | "magnify-minus-outline": F6EB, 1174 | "magnify-plus": F34B, 1175 | "magnify-plus-outline": F6EC, 1176 | "mail-ru": F34C, 1177 | "mailbox": F6ED, 1178 | "map": F34D, 1179 | "map-marker": F34E, 1180 | "map-marker-circle": F34F, 1181 | "map-marker-minus": F650, 1182 | "map-marker-multiple": F350, 1183 | "map-marker-off": F351, 1184 | "map-marker-outline": F7D8, 1185 | "map-marker-plus": F651, 1186 | "map-marker-radius": F352, 1187 | "margin": F353, 1188 | "markdown": F354, 1189 | "marker": F652, 1190 | "marker-check": F355, 1191 | "martini": F356, 1192 | "material-ui": F357, 1193 | "math-compass": F358, 1194 | "matrix": F628, 1195 | "maxcdn": F359, 1196 | "medical-bag": F6EE, 1197 | "medium": F35A, 1198 | "memory": F35B, 1199 | "menu": F35C, 1200 | "menu-down": F35D, 1201 | "menu-down-outline": F6B5, 1202 | "menu-left": F35E, 1203 | "menu-right": F35F, 1204 | "menu-up": F360, 1205 | "menu-up-outline": F6B6, 1206 | "message": F361, 1207 | "message-alert": F362, 1208 | "message-bulleted": F6A1, 1209 | "message-bulleted-off": F6A2, 1210 | "message-draw": F363, 1211 | "message-image": F364, 1212 | "message-outline": F365, 1213 | "message-plus": F653, 1214 | "message-processing": F366, 1215 | "message-reply": F367, 1216 | "message-reply-text": F368, 1217 | "message-settings": F6EF, 1218 | "message-settings-variant": F6F0, 1219 | "message-text": F369, 1220 | "message-text-outline": F36A, 1221 | "message-video": F36B, 1222 | "meteor": F629, 1223 | "metronome": F7D9, 1224 | "metronome-tick": F7DA, 1225 | "micro-sd": F7DB, 1226 | "microphone": F36C, 1227 | "microphone-off": F36D, 1228 | "microphone-outline": F36E, 1229 | "microphone-settings": F36F, 1230 | "microphone-variant": F370, 1231 | "microphone-variant-off": F371, 1232 | "microscope": F654, 1233 | "microsoft": F372, 1234 | "minecraft": F373, 1235 | "minus": F374, 1236 | "minus-box": F375, 1237 | "minus-box-outline": F6F1, 1238 | "minus-circle": F376, 1239 | "minus-circle-outline": F377, 1240 | "minus-network": F378, 1241 | "mixcloud": F62A, 1242 | "mixer": F7DC, 1243 | "monitor": F379, 1244 | "monitor-multiple": F37A, 1245 | "more": F37B, 1246 | "motorbike": F37C, 1247 | "mouse": F37D, 1248 | "mouse-off": F37E, 1249 | "mouse-variant": F37F, 1250 | "mouse-variant-off": F380, 1251 | "move-resize": F655, 1252 | "move-resize-variant": F656, 1253 | "movie": F381, 1254 | "movie-roll": F7DD, 1255 | "multiplication": F382, 1256 | "multiplication-box": F383, 1257 | "mushroom": F7DE, 1258 | "mushroom-outline": F7DF, 1259 | "music": F759, 1260 | "music-box": F384, 1261 | "music-box-outline": F385, 1262 | "music-circle": F386, 1263 | "music-note": F387, 1264 | "music-note-bluetooth": F5FE, 1265 | "music-note-bluetooth-off": F5FF, 1266 | "music-note-eighth": F388, 1267 | "music-note-half": F389, 1268 | "music-note-off": F38A, 1269 | "music-note-quarter": F38B, 1270 | "music-note-sixteenth": F38C, 1271 | "music-note-whole": F38D, 1272 | "music-off": F75A, 1273 | "nature": F38E, 1274 | "nature-people": F38F, 1275 | "navigation": F390, 1276 | "near-me": F5CD, 1277 | "needle": F391, 1278 | "nest-protect": F392, 1279 | "nest-thermostat": F393, 1280 | "netflix": F745, 1281 | "network": F6F2, 1282 | "new-box": F394, 1283 | "newspaper": F395, 1284 | "nfc": F396, 1285 | "nfc-tap": F397, 1286 | "nfc-variant": F398, 1287 | "ninja": F773, 1288 | "nintendo-switch": F7E0, 1289 | "nodejs": F399, 1290 | "note": F39A, 1291 | "note-multiple": F6B7, 1292 | "note-multiple-outline": F6B8, 1293 | "note-outline": F39B, 1294 | "note-plus": F39C, 1295 | "note-plus-outline": F39D, 1296 | "note-text": F39E, 1297 | "notification-clear-all": F39F, 1298 | "npm": F6F6, 1299 | "nuke": F6A3, 1300 | "null": F7E1, 1301 | "numeric": F3A0, 1302 | "numeric-0-box": F3A1, 1303 | "numeric-0-box-multiple-outline": F3A2, 1304 | "numeric-0-box-outline": F3A3, 1305 | "numeric-1-box": F3A4, 1306 | "numeric-1-box-multiple-outline": F3A5, 1307 | "numeric-1-box-outline": F3A6, 1308 | "numeric-2-box": F3A7, 1309 | "numeric-2-box-multiple-outline": F3A8, 1310 | "numeric-2-box-outline": F3A9, 1311 | "numeric-3-box": F3AA, 1312 | "numeric-3-box-multiple-outline": F3AB, 1313 | "numeric-3-box-outline": F3AC, 1314 | "numeric-4-box": F3AD, 1315 | "numeric-4-box-multiple-outline": F3AE, 1316 | "numeric-4-box-outline": F3AF, 1317 | "numeric-5-box": F3B0, 1318 | "numeric-5-box-multiple-outline": F3B1, 1319 | "numeric-5-box-outline": F3B2, 1320 | "numeric-6-box": F3B3, 1321 | "numeric-6-box-multiple-outline": F3B4, 1322 | "numeric-6-box-outline": F3B5, 1323 | "numeric-7-box": F3B6, 1324 | "numeric-7-box-multiple-outline": F3B7, 1325 | "numeric-7-box-outline": F3B8, 1326 | "numeric-8-box": F3B9, 1327 | "numeric-8-box-multiple-outline": F3BA, 1328 | "numeric-8-box-outline": F3BB, 1329 | "numeric-9-box": F3BC, 1330 | "numeric-9-box-multiple-outline": F3BD, 1331 | "numeric-9-box-outline": F3BE, 1332 | "numeric-9-plus-box": F3BF, 1333 | "numeric-9-plus-box-multiple-outline": F3C0, 1334 | "numeric-9-plus-box-outline": F3C1, 1335 | "nut": F6F7, 1336 | "nutrition": F3C2, 1337 | "oar": F67B, 1338 | "octagon": F3C3, 1339 | "octagon-outline": F3C4, 1340 | "octagram": F6F8, 1341 | "octagram-outline": F774, 1342 | "odnoklassniki": F3C5, 1343 | "office": F3C6, 1344 | "oil": F3C7, 1345 | "oil-temperature": F3C8, 1346 | "omega": F3C9, 1347 | "onedrive": F3CA, 1348 | "onenote": F746, 1349 | "opacity": F5CC, 1350 | "open-in-app": F3CB, 1351 | "open-in-new": F3CC, 1352 | "openid": F3CD, 1353 | "opera": F3CE, 1354 | "orbit": F018, 1355 | "ornament": F3CF, 1356 | "ornament-variant": F3D0, 1357 | "owl": F3D2, 1358 | "package": F3D3, 1359 | "package-down": F3D4, 1360 | "package-up": F3D5, 1361 | "package-variant": F3D6, 1362 | "package-variant-closed": F3D7, 1363 | "page-first": F600, 1364 | "page-last": F601, 1365 | "page-layout-body": F6F9, 1366 | "page-layout-footer": F6FA, 1367 | "page-layout-header": F6FB, 1368 | "page-layout-sidebar-left": F6FC, 1369 | "page-layout-sidebar-right": F6FD, 1370 | "palette": F3D8, 1371 | "palette-advanced": F3D9, 1372 | "panda": F3DA, 1373 | "pandora": F3DB, 1374 | "panorama": F3DC, 1375 | "panorama-fisheye": F3DD, 1376 | "panorama-horizontal": F3DE, 1377 | "panorama-vertical": F3DF, 1378 | "panorama-wide-angle": F3E0, 1379 | "paper-cut-vertical": F3E1, 1380 | "paperclip": F3E2, 1381 | "parking": F3E3, 1382 | "passport": F7E2, 1383 | "pause": F3E4, 1384 | "pause-circle": F3E5, 1385 | "pause-circle-outline": F3E6, 1386 | "pause-octagon": F3E7, 1387 | "pause-octagon-outline": F3E8, 1388 | "paw": F3E9, 1389 | "paw-off": F657, 1390 | "pen": F3EA, 1391 | "pencil": F3EB, 1392 | "pencil-box": F3EC, 1393 | "pencil-box-outline": F3ED, 1394 | "pencil-circle": F6FE, 1395 | "pencil-circle-outline": F775, 1396 | "pencil-lock": F3EE, 1397 | "pencil-off": F3EF, 1398 | "pentagon": F6FF, 1399 | "pentagon-outline": F700, 1400 | "percent": F3F0, 1401 | "periodic-table-co2": F7E3, 1402 | "periscope": F747, 1403 | "pharmacy": F3F1, 1404 | "phone": F3F2, 1405 | "phone-bluetooth": F3F3, 1406 | "phone-classic": F602, 1407 | "phone-forward": F3F4, 1408 | "phone-hangup": F3F5, 1409 | "phone-in-talk": F3F6, 1410 | "phone-incoming": F3F7, 1411 | "phone-locked": F3F8, 1412 | "phone-log": F3F9, 1413 | "phone-minus": F658, 1414 | "phone-missed": F3FA, 1415 | "phone-outgoing": F3FB, 1416 | "phone-paused": F3FC, 1417 | "phone-plus": F659, 1418 | "phone-settings": F3FD, 1419 | "phone-voip": F3FE, 1420 | "pi": F3FF, 1421 | "pi-box": F400, 1422 | "piano": F67C, 1423 | "pig": F401, 1424 | "pill": F402, 1425 | "pillar": F701, 1426 | "pin": F403, 1427 | "pin-off": F404, 1428 | "pine-tree": F405, 1429 | "pine-tree-box": F406, 1430 | "pinterest": F407, 1431 | "pinterest-box": F408, 1432 | "pipe": F7E4, 1433 | "pipe-disconnected": F7E5, 1434 | "pistol": F702, 1435 | "pizza": F409, 1436 | "plane-shield": F6BA, 1437 | "play": F40A, 1438 | "play-box-outline": F40B, 1439 | "play-circle": F40C, 1440 | "play-circle-outline": F40D, 1441 | "play-pause": F40E, 1442 | "play-protected-content": F40F, 1443 | "playlist-check": F5C7, 1444 | "playlist-minus": F410, 1445 | "playlist-play": F411, 1446 | "playlist-plus": F412, 1447 | "playlist-remove": F413, 1448 | "playstation": F414, 1449 | "plex": F6B9, 1450 | "plus": F415, 1451 | "plus-box": F416, 1452 | "plus-box-outline": F703, 1453 | "plus-circle": F417, 1454 | "plus-circle-multiple-outline": F418, 1455 | "plus-circle-outline": F419, 1456 | "plus-network": F41A, 1457 | "plus-one": F41B, 1458 | "plus-outline": F704, 1459 | "pocket": F41C, 1460 | "pokeball": F41D, 1461 | "polaroid": F41E, 1462 | "poll": F41F, 1463 | "poll-box": F420, 1464 | "polymer": F421, 1465 | "pool": F606, 1466 | "popcorn": F422, 1467 | "pot": F65A, 1468 | "pot-mix": F65B, 1469 | "pound": F423, 1470 | "pound-box": F424, 1471 | "power": F425, 1472 | "power-plug": F6A4, 1473 | "power-plug-off": F6A5, 1474 | "power-settings": F426, 1475 | "power-socket": F427, 1476 | "power-socket-eu": F7E6, 1477 | "power-socket-uk": F7E7, 1478 | "power-socket-us": F7E8, 1479 | "prescription": F705, 1480 | "presentation": F428, 1481 | "presentation-play": F429, 1482 | "printer": F42A, 1483 | "printer-3d": F42B, 1484 | "printer-alert": F42C, 1485 | "printer-settings": F706, 1486 | "priority-high": F603, 1487 | "priority-low": F604, 1488 | "professional-hexagon": F42D, 1489 | "projector": F42E, 1490 | "projector-screen": F42F, 1491 | "publish": F6A6, 1492 | "pulse": F430, 1493 | "puzzle": F431, 1494 | "qqchat": F605, 1495 | "qrcode": F432, 1496 | "qrcode-scan": F433, 1497 | "quadcopter": F434, 1498 | "quality-high": F435, 1499 | "quicktime": F436, 1500 | "radar": F437, 1501 | "radiator": F438, 1502 | "radio": F439, 1503 | "radio-handheld": F43A, 1504 | "radio-tower": F43B, 1505 | "radioactive": F43C, 1506 | "radiobox-blank": F43D, 1507 | "radiobox-marked": F43E, 1508 | "raspberrypi": F43F, 1509 | "ray-end": F440, 1510 | "ray-end-arrow": F441, 1511 | "ray-start": F442, 1512 | "ray-start-arrow": F443, 1513 | "ray-start-end": F444, 1514 | "ray-vertex": F445, 1515 | "rdio": F446, 1516 | "react": F707, 1517 | "read": F447, 1518 | "readability": F448, 1519 | "receipt": F449, 1520 | "record": F44A, 1521 | "record-rec": F44B, 1522 | "recycle": F44C, 1523 | "reddit": F44D, 1524 | "redo": F44E, 1525 | "redo-variant": F44F, 1526 | "refresh": F450, 1527 | "regex": F451, 1528 | "relative-scale": F452, 1529 | "reload": F453, 1530 | "remote": F454, 1531 | "rename-box": F455, 1532 | "reorder-horizontal": F687, 1533 | "reorder-vertical": F688, 1534 | "repeat": F456, 1535 | "repeat-off": F457, 1536 | "repeat-once": F458, 1537 | "replay": F459, 1538 | "reply": F45A, 1539 | "reply-all": F45B, 1540 | "reproduction": F45C, 1541 | "resize-bottom-right": F45D, 1542 | "responsive": F45E, 1543 | "restart": F708, 1544 | "restore": F6A7, 1545 | "rewind": F45F, 1546 | "rewind-outline": F709, 1547 | "rhombus": F70A, 1548 | "rhombus-outline": F70B, 1549 | "ribbon": F460, 1550 | "rice": F7E9, 1551 | "ring": F7EA, 1552 | "road": F461, 1553 | "road-variant": F462, 1554 | "robot": F6A8, 1555 | "rocket": F463, 1556 | "roomba": F70C, 1557 | "rotate-3d": F464, 1558 | "rotate-left": F465, 1559 | "rotate-left-variant": F466, 1560 | "rotate-right": F467, 1561 | "rotate-right-variant": F468, 1562 | "rounded-corner": F607, 1563 | "router-wireless": F469, 1564 | "routes": F46A, 1565 | "rowing": F608, 1566 | "rss": F46B, 1567 | "rss-box": F46C, 1568 | "ruler": F46D, 1569 | "run": F70D, 1570 | "run-fast": F46E, 1571 | "sale": F46F, 1572 | "sass": F7EB, 1573 | "satellite": F470, 1574 | "satellite-variant": F471, 1575 | "saxophone": F609, 1576 | "scale": F472, 1577 | "scale-balance": F5D1, 1578 | "scale-bathroom": F473, 1579 | "scanner": F6AA, 1580 | "school": F474, 1581 | "screen-rotation": F475, 1582 | "screen-rotation-lock": F476, 1583 | "screwdriver": F477, 1584 | "script": F478, 1585 | "sd": F479, 1586 | "seal": F47A, 1587 | "search-web": F70E, 1588 | "seat-flat": F47B, 1589 | "seat-flat-angled": F47C, 1590 | "seat-individual-suite": F47D, 1591 | "seat-legroom-extra": F47E, 1592 | "seat-legroom-normal": F47F, 1593 | "seat-legroom-reduced": F480, 1594 | "seat-recline-extra": F481, 1595 | "seat-recline-normal": F482, 1596 | "security": F483, 1597 | "security-home": F689, 1598 | "security-network": F484, 1599 | "select": F485, 1600 | "select-all": F486, 1601 | "select-inverse": F487, 1602 | "select-off": F488, 1603 | "selection": F489, 1604 | "selection-off": F776, 1605 | "send": F48A, 1606 | "send-secure": F7EC, 1607 | "serial-port": F65C, 1608 | "server": F48B, 1609 | "server-minus": F48C, 1610 | "server-network": F48D, 1611 | "server-network-off": F48E, 1612 | "server-off": F48F, 1613 | "server-plus": F490, 1614 | "server-remove": F491, 1615 | "server-security": F492, 1616 | "set-all": F777, 1617 | "set-center": F778, 1618 | "set-center-right": F779, 1619 | "set-left": F77A, 1620 | "set-left-center": F77B, 1621 | "set-left-right": F77C, 1622 | "set-none": F77D, 1623 | "set-right": F77E, 1624 | "settings": F493, 1625 | "settings-box": F494, 1626 | "shape-circle-plus": F65D, 1627 | "shape-plus": F495, 1628 | "shape-polygon-plus": F65E, 1629 | "shape-rectangle-plus": F65F, 1630 | "shape-square-plus": F660, 1631 | "share": F496, 1632 | "share-variant": F497, 1633 | "shield": F498, 1634 | "shield-half-full": F77F, 1635 | "shield-outline": F499, 1636 | "shopping": F49A, 1637 | "shopping-music": F49B, 1638 | "shovel": F70F, 1639 | "shovel-off": F710, 1640 | "shredder": F49C, 1641 | "shuffle": F49D, 1642 | "shuffle-disabled": F49E, 1643 | "shuffle-variant": F49F, 1644 | "sigma": F4A0, 1645 | "sigma-lower": F62B, 1646 | "sign-caution": F4A1, 1647 | "sign-direction": F780, 1648 | "sign-text": F781, 1649 | "signal": F4A2, 1650 | "signal-2g": F711, 1651 | "signal-3g": F712, 1652 | "signal-4g": F713, 1653 | "signal-hspa": F714, 1654 | "signal-hspa-plus": F715, 1655 | "signal-off": F782, 1656 | "signal-variant": F60A, 1657 | "silverware": F4A3, 1658 | "silverware-fork": F4A4, 1659 | "silverware-spoon": F4A5, 1660 | "silverware-variant": F4A6, 1661 | "sim": F4A7, 1662 | "sim-alert": F4A8, 1663 | "sim-off": F4A9, 1664 | "sitemap": F4AA, 1665 | "skip-backward": F4AB, 1666 | "skip-forward": F4AC, 1667 | "skip-next": F4AD, 1668 | "skip-next-circle": F661, 1669 | "skip-next-circle-outline": F662, 1670 | "skip-previous": F4AE, 1671 | "skip-previous-circle": F663, 1672 | "skip-previous-circle-outline": F664, 1673 | "skull": F68B, 1674 | "skype": F4AF, 1675 | "skype-business": F4B0, 1676 | "slack": F4B1, 1677 | "sleep": F4B2, 1678 | "sleep-off": F4B3, 1679 | "smoking": F4B4, 1680 | "smoking-off": F4B5, 1681 | "snapchat": F4B6, 1682 | "snowflake": F716, 1683 | "snowman": F4B7, 1684 | "soccer": F4B8, 1685 | "sofa": F4B9, 1686 | "solid": F68C, 1687 | "sort": F4BA, 1688 | "sort-alphabetical": F4BB, 1689 | "sort-ascending": F4BC, 1690 | "sort-descending": F4BD, 1691 | "sort-numeric": F4BE, 1692 | "sort-variant": F4BF, 1693 | "soundcloud": F4C0, 1694 | "source-branch": F62C, 1695 | "source-commit": F717, 1696 | "source-commit-end": F718, 1697 | "source-commit-end-local": F719, 1698 | "source-commit-local": F71A, 1699 | "source-commit-next-local": F71B, 1700 | "source-commit-start": F71C, 1701 | "source-commit-start-next-local": F71D, 1702 | "source-fork": F4C1, 1703 | "source-merge": F62D, 1704 | "source-pull": F4C2, 1705 | "soy-sauce": F7ED, 1706 | "speaker": F4C3, 1707 | "speaker-off": F4C4, 1708 | "speaker-wireless": F71E, 1709 | "speedometer": F4C5, 1710 | "spellcheck": F4C6, 1711 | "spotify": F4C7, 1712 | "spotlight": F4C8, 1713 | "spotlight-beam": F4C9, 1714 | "spray": F665, 1715 | "square": F763, 1716 | "square-inc": F4CA, 1717 | "square-inc-cash": F4CB, 1718 | "square-outline": F762, 1719 | "square-root": F783, 1720 | "stackexchange": F60B, 1721 | "stackoverflow": F4CC, 1722 | "stadium": F71F, 1723 | "stairs": F4CD, 1724 | "standard-definition": F7EE, 1725 | "star": F4CE, 1726 | "star-circle": F4CF, 1727 | "star-half": F4D0, 1728 | "star-off": F4D1, 1729 | "star-outline": F4D2, 1730 | "steam": F4D3, 1731 | "steering": F4D4, 1732 | "step-backward": F4D5, 1733 | "step-backward-2": F4D6, 1734 | "step-forward": F4D7, 1735 | "step-forward-2": F4D8, 1736 | "stethoscope": F4D9, 1737 | "sticker": F5D0, 1738 | "sticker-emoji": F784, 1739 | "stocking": F4DA, 1740 | "stop": F4DB, 1741 | "stop-circle": F666, 1742 | "stop-circle-outline": F667, 1743 | "store": F4DC, 1744 | "store-24-hour": F4DD, 1745 | "stove": F4DE, 1746 | "subdirectory-arrow-left": F60C, 1747 | "subdirectory-arrow-right": F60D, 1748 | "subway": F6AB, 1749 | "subway-variant": F4DF, 1750 | "summit": F785, 1751 | "sunglasses": F4E0, 1752 | "surround-sound": F5C5, 1753 | "surround-sound-2-0": F7EF, 1754 | "surround-sound-3-1": F7F0, 1755 | "surround-sound-5-1": F7F1, 1756 | "surround-sound-7-1": F7F2, 1757 | "svg": F720, 1758 | "swap-horizontal": F4E1, 1759 | "swap-vertical": F4E2, 1760 | "swim": F4E3, 1761 | "switch": F4E4, 1762 | "sword": F4E5, 1763 | "sword-cross": F786, 1764 | "sync": F4E6, 1765 | "sync-alert": F4E7, 1766 | "sync-off": F4E8, 1767 | "tab": F4E9, 1768 | "tab-plus": F75B, 1769 | "tab-unselected": F4EA, 1770 | "table": F4EB, 1771 | "table-column-plus-after": F4EC, 1772 | "table-column-plus-before": F4ED, 1773 | "table-column-remove": F4EE, 1774 | "table-column-width": F4EF, 1775 | "table-edit": F4F0, 1776 | "table-large": F4F1, 1777 | "table-row-height": F4F2, 1778 | "table-row-plus-after": F4F3, 1779 | "table-row-plus-before": F4F4, 1780 | "table-row-remove": F4F5, 1781 | "tablet": F4F6, 1782 | "tablet-android": F4F7, 1783 | "tablet-ipad": F4F8, 1784 | "taco": F761, 1785 | "tag": F4F9, 1786 | "tag-faces": F4FA, 1787 | "tag-heart": F68A, 1788 | "tag-multiple": F4FB, 1789 | "tag-outline": F4FC, 1790 | "tag-plus": F721, 1791 | "tag-remove": F722, 1792 | "tag-text-outline": F4FD, 1793 | "target": F4FE, 1794 | "taxi": F4FF, 1795 | "teamviewer": F500, 1796 | "telegram": F501, 1797 | "television": F502, 1798 | "television-classic": F7F3, 1799 | "television-guide": F503, 1800 | "temperature-celsius": F504, 1801 | "temperature-fahrenheit": F505, 1802 | "temperature-kelvin": F506, 1803 | "tennis": F507, 1804 | "tent": F508, 1805 | "terrain": F509, 1806 | "test-tube": F668, 1807 | "text-shadow": F669, 1808 | "text-to-speech": F50A, 1809 | "text-to-speech-off": F50B, 1810 | "textbox": F60E, 1811 | "textbox-password": F7F4, 1812 | "texture": F50C, 1813 | "theater": F50D, 1814 | "theme-light-dark": F50E, 1815 | "thermometer": F50F, 1816 | "thermometer-lines": F510, 1817 | "thought-bubble": F7F5, 1818 | "thought-bubble-outline": F7F6, 1819 | "thumb-down": F511, 1820 | "thumb-down-outline": F512, 1821 | "thumb-up": F513, 1822 | "thumb-up-outline": F514, 1823 | "thumbs-up-down": F515, 1824 | "ticket": F516, 1825 | "ticket-account": F517, 1826 | "ticket-confirmation": F518, 1827 | "ticket-percent": F723, 1828 | "tie": F519, 1829 | "tilde": F724, 1830 | "timelapse": F51A, 1831 | "timer": F51B, 1832 | "timer-10": F51C, 1833 | "timer-3": F51D, 1834 | "timer-off": F51E, 1835 | "timer-sand": F51F, 1836 | "timer-sand-empty": F6AC, 1837 | "timer-sand-full": F78B, 1838 | "timetable": F520, 1839 | "toggle-switch": F521, 1840 | "toggle-switch-off": F522, 1841 | "tooltip": F523, 1842 | "tooltip-edit": F524, 1843 | "tooltip-image": F525, 1844 | "tooltip-outline": F526, 1845 | "tooltip-outline-plus": F527, 1846 | "tooltip-text": F528, 1847 | "tooth": F529, 1848 | "tor": F52A, 1849 | "tower-beach": F680, 1850 | "tower-fire": F681, 1851 | "trackpad": F7F7, 1852 | "traffic-light": F52B, 1853 | "train": F52C, 1854 | "tram": F52D, 1855 | "transcribe": F52E, 1856 | "transcribe-close": F52F, 1857 | "transfer": F530, 1858 | "transit-transfer": F6AD, 1859 | "translate": F5CA, 1860 | "treasure-chest": F725, 1861 | "tree": F531, 1862 | "trello": F532, 1863 | "trending-down": F533, 1864 | "trending-neutral": F534, 1865 | "trending-up": F535, 1866 | "triangle": F536, 1867 | "triangle-outline": F537, 1868 | "trophy": F538, 1869 | "trophy-award": F539, 1870 | "trophy-outline": F53A, 1871 | "trophy-variant": F53B, 1872 | "trophy-variant-outline": F53C, 1873 | "truck": F53D, 1874 | "truck-delivery": F53E, 1875 | "truck-fast": F787, 1876 | "truck-trailer": F726, 1877 | "tshirt-crew": F53F, 1878 | "tshirt-v": F540, 1879 | "tumblr": F541, 1880 | "tumblr-reblog": F542, 1881 | "tune": F62E, 1882 | "tune-vertical": F66A, 1883 | "twitch": F543, 1884 | "twitter": F544, 1885 | "twitter-box": F545, 1886 | "twitter-circle": F546, 1887 | "twitter-retweet": F547, 1888 | "uber": F748, 1889 | "ubuntu": F548, 1890 | "ultra-high-definition": F7F8, 1891 | "umbraco": F549, 1892 | "umbrella": F54A, 1893 | "umbrella-outline": F54B, 1894 | "undo": F54C, 1895 | "undo-variant": F54D, 1896 | "unfold-less-horizontal": F54E, 1897 | "unfold-less-vertical": F75F, 1898 | "unfold-more-horizontal": F54F, 1899 | "unfold-more-vertical": F760, 1900 | "ungroup": F550, 1901 | "unity": F6AE, 1902 | "untappd": F551, 1903 | "update": F6AF, 1904 | "upload": F552, 1905 | "upload-network": F6F5, 1906 | "usb": F553, 1907 | "van-passenger": F7F9, 1908 | "van-utility": F7FA, 1909 | "vanish": F7FB, 1910 | "vector-arrange-above": F554, 1911 | "vector-arrange-below": F555, 1912 | "vector-circle": F556, 1913 | "vector-circle-variant": F557, 1914 | "vector-combine": F558, 1915 | "vector-curve": F559, 1916 | "vector-difference": F55A, 1917 | "vector-difference-ab": F55B, 1918 | "vector-difference-ba": F55C, 1919 | "vector-intersection": F55D, 1920 | "vector-line": F55E, 1921 | "vector-point": F55F, 1922 | "vector-polygon": F560, 1923 | "vector-polyline": F561, 1924 | "vector-radius": F749, 1925 | "vector-rectangle": F5C6, 1926 | "vector-selection": F562, 1927 | "vector-square": F001, 1928 | "vector-triangle": F563, 1929 | "vector-union": F564, 1930 | "verified": F565, 1931 | "vibrate": F566, 1932 | "video": F567, 1933 | "video-3d": F7FC, 1934 | "video-off": F568, 1935 | "video-switch": F569, 1936 | "view-agenda": F56A, 1937 | "view-array": F56B, 1938 | "view-carousel": F56C, 1939 | "view-column": F56D, 1940 | "view-dashboard": F56E, 1941 | "view-day": F56F, 1942 | "view-grid": F570, 1943 | "view-headline": F571, 1944 | "view-list": F572, 1945 | "view-module": F573, 1946 | "view-parallel": F727, 1947 | "view-quilt": F574, 1948 | "view-sequential": F728, 1949 | "view-stream": F575, 1950 | "view-week": F576, 1951 | "vimeo": F577, 1952 | "vine": F578, 1953 | "violin": F60F, 1954 | "visualstudio": F610, 1955 | "vk": F579, 1956 | "vk-box": F57A, 1957 | "vk-circle": F57B, 1958 | "vlc": F57C, 1959 | "voice": F5CB, 1960 | "voicemail": F57D, 1961 | "volume-high": F57E, 1962 | "volume-low": F57F, 1963 | "volume-medium": F580, 1964 | "volume-minus": F75D, 1965 | "volume-mute": F75E, 1966 | "volume-off": F581, 1967 | "volume-plus": F75C, 1968 | "vpn": F582, 1969 | "walk": F583, 1970 | "wall": F7FD, 1971 | "wallet": F584, 1972 | "wallet-giftcard": F585, 1973 | "wallet-membership": F586, 1974 | "wallet-travel": F587, 1975 | "wan": F588, 1976 | "washing-machine": F729, 1977 | "watch": F589, 1978 | "watch-export": F58A, 1979 | "watch-import": F58B, 1980 | "watch-vibrate": F6B0, 1981 | "water": F58C, 1982 | "water-off": F58D, 1983 | "water-percent": F58E, 1984 | "water-pump": F58F, 1985 | "watermark": F612, 1986 | "waves": F78C, 1987 | "weather-cloudy": F590, 1988 | "weather-fog": F591, 1989 | "weather-hail": F592, 1990 | "weather-lightning": F593, 1991 | "weather-lightning-rainy": F67D, 1992 | "weather-night": F594, 1993 | "weather-partlycloudy": F595, 1994 | "weather-pouring": F596, 1995 | "weather-rainy": F597, 1996 | "weather-snowy": F598, 1997 | "weather-snowy-rainy": F67E, 1998 | "weather-sunny": F599, 1999 | "weather-sunset": F59A, 2000 | "weather-sunset-down": F59B, 2001 | "weather-sunset-up": F59C, 2002 | "weather-windy": F59D, 2003 | "weather-windy-variant": F59E, 2004 | "web": F59F, 2005 | "webcam": F5A0, 2006 | "webhook": F62F, 2007 | "webpack": F72A, 2008 | "wechat": F611, 2009 | "weight": F5A1, 2010 | "weight-kilogram": F5A2, 2011 | "whatsapp": F5A3, 2012 | "wheelchair-accessibility": F5A4, 2013 | "white-balance-auto": F5A5, 2014 | "white-balance-incandescent": F5A6, 2015 | "white-balance-iridescent": F5A7, 2016 | "white-balance-sunny": F5A8, 2017 | "widgets": F72B, 2018 | "wifi": F5A9, 2019 | "wifi-off": F5AA, 2020 | "wii": F5AB, 2021 | "wiiu": F72C, 2022 | "wikipedia": F5AC, 2023 | "window-close": F5AD, 2024 | "window-closed": F5AE, 2025 | "window-maximize": F5AF, 2026 | "window-minimize": F5B0, 2027 | "window-open": F5B1, 2028 | "window-restore": F5B2, 2029 | "windows": F5B3, 2030 | "wordpress": F5B4, 2031 | "worker": F5B5, 2032 | "wrap": F5B6, 2033 | "wrench": F5B7, 2034 | "wunderlist": F5B8, 2035 | "xaml": F673, 2036 | "xbox": F5B9, 2037 | "xbox-controller": F5BA, 2038 | "xbox-controller-battery-alert": F74A, 2039 | "xbox-controller-battery-empty": F74B, 2040 | "xbox-controller-battery-full": F74C, 2041 | "xbox-controller-battery-low": F74D, 2042 | "xbox-controller-battery-medium": F74E, 2043 | "xbox-controller-battery-unknown": F74F, 2044 | "xbox-controller-off": F5BB, 2045 | "xda": F5BC, 2046 | "xing": F5BD, 2047 | "xing-box": F5BE, 2048 | "xing-circle": F5BF, 2049 | "xml": F5C0, 2050 | "xmpp": F7FE, 2051 | "yammer": F788, 2052 | "yeast": F5C1, 2053 | "yelp": F5C2, 2054 | "yin-yang": F67F, 2055 | "youtube-play": F5C3, 2056 | "zip-box": F5C4 2057 | ); -------------------------------------------------------------------------------- /scss/materialdesignicons.scss: -------------------------------------------------------------------------------- 1 | /* MaterialDesignIcons.com */ 2 | @import "variables"; 3 | @import "functions"; 4 | @import "path"; 5 | @import "core"; 6 | @import "icons"; 7 | @import "extras"; 8 | @import "animated"; --------------------------------------------------------------------------------