├── README.md ├── logos ├── android-chrome-192x192.psd ├── apple-touch-icon.psd ├── banner.jpeg ├── coffee.jpeg ├── favicon.png ├── logo.svg ├── logo_alt.svg └── logo_full.svg ├── styles ├── boost.scss ├── cute.scss ├── cute │ ├── overrides.scss │ └── palette.scss ├── dark-red.scss ├── dark-red │ ├── diff.scss │ └── variables.scss ├── droid.scss ├── droid │ ├── overrides.scss │ └── palette.scss ├── fullwidth-media.scss ├── light-red.scss ├── light-red │ ├── diff.scss │ └── variables.scss ├── material-dark.scss ├── material-dark │ ├── color │ │ ├── black.scss │ │ ├── mastodon-dark.scss │ │ ├── mastodon-light.scss │ │ ├── plus-classic.scss │ │ ├── v1-dark.scss │ │ ├── v1-light.scss │ │ ├── v2-dark.scss │ │ └── v2-light.scss │ ├── custom_color.scss │ ├── custom_config.scss │ ├── custom_layout.scss │ ├── icon_config.scss │ ├── layout │ │ ├── material-v1.scss │ │ └── material-v2.scss │ ├── loader.scss │ ├── plugins │ │ ├── cards.scss │ │ ├── dense.scss │ │ └── plus.scss │ └── theme │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ ├── account.scss │ │ ├── base_config.scss │ │ ├── basics.scss │ │ ├── button.scss │ │ ├── columns.scss │ │ ├── components.scss │ │ ├── control.scss │ │ ├── emoji-picker.scss │ │ ├── icons.scss │ │ ├── material-icons.scss │ │ ├── media.scss │ │ ├── modal.scss │ │ ├── responsive.scss │ │ ├── statuses.scss │ │ ├── theme.scss │ │ └── variables.scss ├── material-light.scss ├── material-light │ ├── color │ │ ├── black.scss │ │ ├── mastodon-dark.scss │ │ ├── mastodon-light.scss │ │ ├── plus-classic.scss │ │ ├── v1-dark.scss │ │ ├── v1-light.scss │ │ ├── v2-dark.scss │ │ └── v2-light.scss │ ├── custom_color.scss │ ├── custom_config.scss │ ├── custom_layout.scss │ ├── icon_config.scss │ ├── layout │ │ ├── material-v1.scss │ │ └── material-v2.scss │ ├── loader.scss │ ├── plugins │ │ ├── cards.scss │ │ ├── dense.scss │ │ └── plus.scss │ └── theme │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ ├── account.scss │ │ ├── base_config.scss │ │ ├── basics.scss │ │ ├── button.scss │ │ ├── columns.scss │ │ ├── components.scss │ │ ├── control.scss │ │ ├── emoji-picker.scss │ │ ├── icons.scss │ │ ├── material-icons.scss │ │ ├── media.scss │ │ ├── modal.scss │ │ ├── responsive.scss │ │ ├── statuses.scss │ │ ├── theme.scss │ │ └── variables.scss ├── mfc │ ├── 0-palette.css │ ├── 1-foreground.css │ ├── 2-background.css │ ├── 3-highlights.css │ ├── 5-material.css │ ├── 6-actions.css │ ├── mastodonFlat.scss │ └── variables.scss ├── modern-contrast.scss ├── modern-dark.scss ├── modern-light.scss ├── modern │ └── style.scss ├── mods │ ├── deprecated │ │ └── display_bettersearch.css │ ├── display_breakname.css │ ├── display_browserfont.css │ ├── display_circleavatar.css │ ├── display_collapsedinteractions.css │ ├── display_emojizoom.css │ ├── display_fadedinteractions.css │ ├── display_fullmedia.css │ ├── display_fullname.css │ ├── display_hidefollowcounts.css │ ├── display_hidereplycounts.css │ ├── display_starstohearts.css │ ├── display_transparentmedia.css │ ├── layout_1600px.css │ ├── layout_elefriend.css │ ├── layout_gettingstartedheight.css │ ├── layout_hidedisabled.css │ ├── layout_hidefiltered.css │ ├── layout_mobile_bottombar.css │ ├── layout_singlecolumn.css │ ├── layout_widercolumns.css │ └── test_colorizedlogo.css ├── photon.scss ├── photon_dark.scss ├── photon_green.scss ├── photon_light.scss ├── photon_purple.scss └── sleepingtown.scss └── themes.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/README.md -------------------------------------------------------------------------------- /logos/android-chrome-192x192.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/logos/android-chrome-192x192.psd -------------------------------------------------------------------------------- /logos/apple-touch-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/logos/apple-touch-icon.psd -------------------------------------------------------------------------------- /logos/banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/logos/banner.jpeg -------------------------------------------------------------------------------- /logos/coffee.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/logos/coffee.jpeg -------------------------------------------------------------------------------- /logos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/logos/favicon.png -------------------------------------------------------------------------------- /logos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/logos/logo.svg -------------------------------------------------------------------------------- /logos/logo_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/logos/logo_alt.svg -------------------------------------------------------------------------------- /logos/logo_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/logos/logo_full.svg -------------------------------------------------------------------------------- /styles/boost.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/boost.scss -------------------------------------------------------------------------------- /styles/cute.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/cute.scss -------------------------------------------------------------------------------- /styles/cute/overrides.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/cute/palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/cute/palette.scss -------------------------------------------------------------------------------- /styles/dark-red.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/dark-red.scss -------------------------------------------------------------------------------- /styles/dark-red/diff.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/dark-red/diff.scss -------------------------------------------------------------------------------- /styles/dark-red/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/dark-red/variables.scss -------------------------------------------------------------------------------- /styles/droid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/droid.scss -------------------------------------------------------------------------------- /styles/droid/overrides.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/droid/palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/droid/palette.scss -------------------------------------------------------------------------------- /styles/fullwidth-media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/fullwidth-media.scss -------------------------------------------------------------------------------- /styles/light-red.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/light-red.scss -------------------------------------------------------------------------------- /styles/light-red/diff.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/light-red/diff.scss -------------------------------------------------------------------------------- /styles/light-red/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/light-red/variables.scss -------------------------------------------------------------------------------- /styles/material-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark.scss -------------------------------------------------------------------------------- /styles/material-dark/color/black.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/color/black.scss -------------------------------------------------------------------------------- /styles/material-dark/color/mastodon-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/color/mastodon-dark.scss -------------------------------------------------------------------------------- /styles/material-dark/color/mastodon-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/color/mastodon-light.scss -------------------------------------------------------------------------------- /styles/material-dark/color/plus-classic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/color/plus-classic.scss -------------------------------------------------------------------------------- /styles/material-dark/color/v1-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/color/v1-dark.scss -------------------------------------------------------------------------------- /styles/material-dark/color/v1-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/color/v1-light.scss -------------------------------------------------------------------------------- /styles/material-dark/color/v2-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/color/v2-dark.scss -------------------------------------------------------------------------------- /styles/material-dark/color/v2-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/color/v2-light.scss -------------------------------------------------------------------------------- /styles/material-dark/custom_color.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | 4 | // Add your customization below -------------------------------------------------------------------------------- /styles/material-dark/custom_config.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @import 'color/v2-dark'; 3 | -------------------------------------------------------------------------------- /styles/material-dark/custom_layout.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | 4 | // Add your customization below 5 | -------------------------------------------------------------------------------- /styles/material-dark/icon_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/icon_config.scss -------------------------------------------------------------------------------- /styles/material-dark/layout/material-v1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/layout/material-v1.scss -------------------------------------------------------------------------------- /styles/material-dark/layout/material-v2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/layout/material-v2.scss -------------------------------------------------------------------------------- /styles/material-dark/loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/loader.scss -------------------------------------------------------------------------------- /styles/material-dark/plugins/cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/plugins/cards.scss -------------------------------------------------------------------------------- /styles/material-dark/plugins/dense.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/plugins/dense.scss -------------------------------------------------------------------------------- /styles/material-dark/plugins/plus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/plugins/plus.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/_functions.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/_mixins.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/account.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/account.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/base_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/base_config.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/basics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/basics.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/button.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/columns.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/components.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/control.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/emoji-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/emoji-picker.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/icons.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/material-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/material-icons.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/media.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/modal.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/responsive.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/statuses.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/statuses.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/theme.scss -------------------------------------------------------------------------------- /styles/material-dark/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-dark/theme/variables.scss -------------------------------------------------------------------------------- /styles/material-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light.scss -------------------------------------------------------------------------------- /styles/material-light/color/black.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/color/black.scss -------------------------------------------------------------------------------- /styles/material-light/color/mastodon-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/color/mastodon-dark.scss -------------------------------------------------------------------------------- /styles/material-light/color/mastodon-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/color/mastodon-light.scss -------------------------------------------------------------------------------- /styles/material-light/color/plus-classic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/color/plus-classic.scss -------------------------------------------------------------------------------- /styles/material-light/color/v1-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/color/v1-dark.scss -------------------------------------------------------------------------------- /styles/material-light/color/v1-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/color/v1-light.scss -------------------------------------------------------------------------------- /styles/material-light/color/v2-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/color/v2-dark.scss -------------------------------------------------------------------------------- /styles/material-light/color/v2-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/color/v2-light.scss -------------------------------------------------------------------------------- /styles/material-light/custom_color.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | 4 | // Add your customization below -------------------------------------------------------------------------------- /styles/material-light/custom_config.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @import 'color/v1-light'; 3 | -------------------------------------------------------------------------------- /styles/material-light/custom_layout.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | 4 | // Add your customization below 5 | -------------------------------------------------------------------------------- /styles/material-light/icon_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/icon_config.scss -------------------------------------------------------------------------------- /styles/material-light/layout/material-v1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/layout/material-v1.scss -------------------------------------------------------------------------------- /styles/material-light/layout/material-v2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/layout/material-v2.scss -------------------------------------------------------------------------------- /styles/material-light/loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/loader.scss -------------------------------------------------------------------------------- /styles/material-light/plugins/cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/plugins/cards.scss -------------------------------------------------------------------------------- /styles/material-light/plugins/dense.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/plugins/dense.scss -------------------------------------------------------------------------------- /styles/material-light/plugins/plus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/plugins/plus.scss -------------------------------------------------------------------------------- /styles/material-light/theme/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/_functions.scss -------------------------------------------------------------------------------- /styles/material-light/theme/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/_mixins.scss -------------------------------------------------------------------------------- /styles/material-light/theme/account.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/account.scss -------------------------------------------------------------------------------- /styles/material-light/theme/base_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/base_config.scss -------------------------------------------------------------------------------- /styles/material-light/theme/basics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/basics.scss -------------------------------------------------------------------------------- /styles/material-light/theme/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/button.scss -------------------------------------------------------------------------------- /styles/material-light/theme/columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/columns.scss -------------------------------------------------------------------------------- /styles/material-light/theme/components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/components.scss -------------------------------------------------------------------------------- /styles/material-light/theme/control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/control.scss -------------------------------------------------------------------------------- /styles/material-light/theme/emoji-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/emoji-picker.scss -------------------------------------------------------------------------------- /styles/material-light/theme/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/icons.scss -------------------------------------------------------------------------------- /styles/material-light/theme/material-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/material-icons.scss -------------------------------------------------------------------------------- /styles/material-light/theme/media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/media.scss -------------------------------------------------------------------------------- /styles/material-light/theme/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/modal.scss -------------------------------------------------------------------------------- /styles/material-light/theme/responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/responsive.scss -------------------------------------------------------------------------------- /styles/material-light/theme/statuses.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/statuses.scss -------------------------------------------------------------------------------- /styles/material-light/theme/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/theme.scss -------------------------------------------------------------------------------- /styles/material-light/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/material-light/theme/variables.scss -------------------------------------------------------------------------------- /styles/mfc/0-palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mfc/0-palette.css -------------------------------------------------------------------------------- /styles/mfc/1-foreground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mfc/1-foreground.css -------------------------------------------------------------------------------- /styles/mfc/2-background.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mfc/2-background.css -------------------------------------------------------------------------------- /styles/mfc/3-highlights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mfc/3-highlights.css -------------------------------------------------------------------------------- /styles/mfc/5-material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mfc/5-material.css -------------------------------------------------------------------------------- /styles/mfc/6-actions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mfc/6-actions.css -------------------------------------------------------------------------------- /styles/mfc/mastodonFlat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mfc/mastodonFlat.scss -------------------------------------------------------------------------------- /styles/mfc/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mfc/variables.scss -------------------------------------------------------------------------------- /styles/modern-contrast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/modern-contrast.scss -------------------------------------------------------------------------------- /styles/modern-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/modern-dark.scss -------------------------------------------------------------------------------- /styles/modern-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/modern-light.scss -------------------------------------------------------------------------------- /styles/modern/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/modern/style.scss -------------------------------------------------------------------------------- /styles/mods/deprecated/display_bettersearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/deprecated/display_bettersearch.css -------------------------------------------------------------------------------- /styles/mods/display_breakname.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_breakname.css -------------------------------------------------------------------------------- /styles/mods/display_browserfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_browserfont.css -------------------------------------------------------------------------------- /styles/mods/display_circleavatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_circleavatar.css -------------------------------------------------------------------------------- /styles/mods/display_collapsedinteractions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_collapsedinteractions.css -------------------------------------------------------------------------------- /styles/mods/display_emojizoom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_emojizoom.css -------------------------------------------------------------------------------- /styles/mods/display_fadedinteractions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_fadedinteractions.css -------------------------------------------------------------------------------- /styles/mods/display_fullmedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_fullmedia.css -------------------------------------------------------------------------------- /styles/mods/display_fullname.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_fullname.css -------------------------------------------------------------------------------- /styles/mods/display_hidefollowcounts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_hidefollowcounts.css -------------------------------------------------------------------------------- /styles/mods/display_hidereplycounts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_hidereplycounts.css -------------------------------------------------------------------------------- /styles/mods/display_starstohearts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_starstohearts.css -------------------------------------------------------------------------------- /styles/mods/display_transparentmedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/display_transparentmedia.css -------------------------------------------------------------------------------- /styles/mods/layout_1600px.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/layout_1600px.css -------------------------------------------------------------------------------- /styles/mods/layout_elefriend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/layout_elefriend.css -------------------------------------------------------------------------------- /styles/mods/layout_gettingstartedheight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/layout_gettingstartedheight.css -------------------------------------------------------------------------------- /styles/mods/layout_hidedisabled.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/layout_hidedisabled.css -------------------------------------------------------------------------------- /styles/mods/layout_hidefiltered.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/layout_hidefiltered.css -------------------------------------------------------------------------------- /styles/mods/layout_mobile_bottombar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/layout_mobile_bottombar.css -------------------------------------------------------------------------------- /styles/mods/layout_singlecolumn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/layout_singlecolumn.css -------------------------------------------------------------------------------- /styles/mods/layout_widercolumns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/layout_widercolumns.css -------------------------------------------------------------------------------- /styles/mods/test_colorizedlogo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/mods/test_colorizedlogo.css -------------------------------------------------------------------------------- /styles/photon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/photon.scss -------------------------------------------------------------------------------- /styles/photon_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/photon_dark.scss -------------------------------------------------------------------------------- /styles/photon_green.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/photon_green.scss -------------------------------------------------------------------------------- /styles/photon_light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/photon_light.scss -------------------------------------------------------------------------------- /styles/photon_purple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/photon_purple.scss -------------------------------------------------------------------------------- /styles/sleepingtown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/styles/sleepingtown.scss -------------------------------------------------------------------------------- /themes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeedon/Cofffee-Assets/HEAD/themes.yml --------------------------------------------------------------------------------