diff --git a/config/style/theme.css b/config/style/theme.css index a366733..6df9045 100644 --- a/config/style/theme.css +++ b/config/style/theme.css @@ -7,8 +7,8 @@ --color-base-foreground: 255, 255, 255; --color-base-background: 245, 247, 251; - --color-base-200: 226, 232, 240; - --color-base-300: 203, 213, 225; + --color-base-muted: 226, 232, 240; + --color-base-border: 203, 213, 225; --color-base-content: 0, 0, 0; } @@ -21,7 +21,7 @@ --color-base-background: 23,23,23; --color-base-foreground: 38,38,38; - --color-base-200: 30, 41, 59; - --color-base-300: 55, 65, 81; + --color-base-muted: 30, 41, 59; + --color-base-border: 55, 65, 81; --color-base-content: 255, 255, 255; } diff --git a/src/assets/css/tailwind.css b/src/assets/css/tailwind.css index be5501a..f05bfaf 100644 --- a/src/assets/css/tailwind.css +++ b/src/assets/css/tailwind.css @@ -2,52 +2,54 @@ @tailwind components; @tailwind utilities; +:root { + --color-primary: 0, 0, 0; + --color-primary-content: 255, 255, 255; - :root { - --color-primary: 0, 0, 0; - --color-primary-content: 255, 255, 255; - - --color-secondary: 14, 165, 233; - --color-secondary-content: 255, 255, 255; - - --color-base-foreground: 255, 255, 255; - --color-base-background: 245, 247, 251; - --color-base-200: 226, 232, 240; - --color-base-300: 203, 213, 225; - --color-base-content: 0, 0, 0; - } - - .dark { - --color-primary: 14, 165, 233; - --color-primary-content: 255, 255, 255; - - --color-secondary: 14, 165, 233; - --color-secondary-content: 255, 255, 255; - - --color-base-background: 23,23,23; - --color-base-foreground: 38,38,38; - --color-base-200: 30, 41, 59; - --color-base-300: 30, 41, 59; - --color-base-content: 255, 255, 255; - } - - * { - box-sizing: content-box; - } - - body { - @apply - font-main - bg-base-background - dark:text-slate-400; - } - - a { - @apply - text-secondary-color; - hover:text-gray-900; - } + --color-secondary: 14, 165, 233; + --color-secondary-content: 255, 255, 255; + + --color-base-foreground: 255, 255, 255; + --color-base-background: 245, 247, 251; + --color-base-muted: 226, 232, 240; + --color-base-border: 203, 213, 225; + --color-base-content: 0, 0, 0; + + --color-map-georeference-marker: 239, 68, 68; + --color-map-asserted: 249, 115, 22; +} + +.dark { + --color-primary: 14, 165, 233; + --color-primary-content: 255, 255, 255; - .dark { - color-scheme: dark; - } + --color-secondary: 14, 165, 233; + --color-secondary-content: 255, 255, 255; + + --color-base-background: 23,23,23; + --color-base-foreground: 38,38,38; + --color-base-muted: 30, 41, 59; + --color-base-border: 30, 41, 59; + --color-base-content: 255, 255, 255; +} + +* { + box-sizing: content-box; +} + +body { + @apply + font-main + bg-base-background + dark:text-slate-400; +} + +a { + @apply + text-secondary-color; + hover:text-gray-900; +} + +.dark { + color-scheme: dark; +} diff --git a/src/components/Autocomplete/Autocomplete.global.vue b/src/components/Autocomplete/Autocomplete.global.vue index c410a91..3b27495 100644 --- a/src/components/Autocomplete/Autocomplete.global.vue +++ b/src/components/Autocomplete/Autocomplete.global.vue @@ -50,7 +50,7 @@ overflow-y-auto border bg-base-foreground - border-base-300 + border-base-border !m-0" >
  • diff --git a/src/components/Card/VCard.global.vue b/src/components/Card/VCard.global.vue index a3b1315..95a9c61 100644 --- a/src/components/Card/VCard.global.vue +++ b/src/components/Card/VCard.global.vue @@ -1,5 +1,5 @@ diff --git a/src/components/Card/VCardHeader.global.vue b/src/components/Card/VCardHeader.global.vue index 9be31cb..0857e92 100644 --- a/src/components/Card/VCardHeader.global.vue +++ b/src/components/Card/VCardHeader.global.vue @@ -1,5 +1,5 @@ \ No newline at end of file diff --git a/src/components/Gallery/GalleryImage.global.vue b/src/components/Gallery/GalleryImage.global.vue index ad88089..085d724 100644 --- a/src/components/Gallery/GalleryImage.global.vue +++ b/src/components/Gallery/GalleryImage.global.vue @@ -7,7 +7,7 @@ border print:hidden bg-base-0 - border-base-200 + border-base-muted " >
    diff --git a/src/components/Gallery/GalleryThumbnail.vue b/src/components/Gallery/GalleryThumbnail.vue index 4362227..812df5e 100644 --- a/src/components/Gallery/GalleryThumbnail.vue +++ b/src/components/Gallery/GalleryThumbnail.vue @@ -1,6 +1,6 @@