You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
913 B
22 lines
913 B
@use 'sass:color'; |
|
@use '../mastodon/variables' as *; |
|
@use '../mastodon/functions' as *; |
|
|
|
body { |
|
--dropdown-border-color: hsl(240deg, 25%, 88%); |
|
--dropdown-background-color: #fff; |
|
--modal-border-color: hsl(240deg, 25%, 88%); |
|
--modal-background-color: var(--background-color); |
|
--background-border-color: hsl(240deg, 25%, 88%); |
|
--background-color: #fff; |
|
--background-color-tint: rgba(255, 255, 255, 80%); |
|
--background-filter: blur(10px); |
|
--surface-variant-background-color: #f1ebfb; |
|
--surface-border-color: #cac4d0; |
|
--on-surface-color: #{color.adjust($ui-base-color, $alpha: -0.65)}; |
|
--rich-text-container-color: rgba(255, 216, 231, 100%); |
|
--rich-text-text-color: rgba(114, 47, 83, 100%); |
|
--rich-text-decorations-color: rgba(255, 175, 212, 100%); |
|
--input-placeholder-color: #{color.adjust($dark-text-color, $alpha: -0.5)}; |
|
--input-background-color: #{darken($ui-base-color, 10%)}; |
|
}
|
|
|