diff --git a/playground/assets/global.css b/playground/assets/global.css index 8a24938..a62d4f4 100644 --- a/playground/assets/global.css +++ b/playground/assets/global.css @@ -1,7 +1,7 @@ :root { font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5; - background-image: var(--Gradient); + background: var(--AccentBrightColor); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; @@ -11,7 +11,9 @@ --AccentColor: #00976b; --TextColor: #494949; --WhiteColor: #fff; - --Gradient: linear-gradient(to top, #00ff8d 0%, #00c68c 100%); + --AccentBrightColor: #2fe292; + --AccentLightColor: #d5ece2; + --AccentDarkColor: #076046; } :root { diff --git a/playground/components/Header.vue b/playground/components/Header.vue index 33c6b56..aa80e1e 100644 --- a/playground/components/Header.vue +++ b/playground/components/Header.vue @@ -5,6 +5,8 @@ import { useFixedHeader } from 'vue-use-fixed-header' const headerRef = ref(null) const { styles } = useFixedHeader(headerRef) + +const linkProps = { target: '_blank', class: 'Nav_List_Link' }