Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
feat(ui): new gray-950
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Jan 21, 2022
1 parent b9ee766 commit 2a03467
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/peeky-client/src/features/run/RunManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const darkMode = computed<boolean>({
<template>
<div
v-bind="$attrs"
class="relative flex-none bg-gray-50 dark:bg-gray-900"
class="relative flex-none bg-gray-50 dark:bg-gray-950"
>
<transition name="progress-bar">
<div
Expand Down
4 changes: 2 additions & 2 deletions packages/peeky-client/src/features/run/RunSummaryBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const kinds = [
</script>

<template>
<div class="flex-none flex items-center space-x-4 px-3 h-10 bg-gray-50 dark:bg-gray-900">
<div class="flex-none flex items-center space-x-4 px-3 h-10 bg-gray-50 dark:bg-gray-950">
<div
v-for="kind of kinds"
:key="kind.field"
Expand All @@ -91,7 +91,7 @@ const kinds = [

<div
v-if="!hideBar"
class="flex-none flex items-center space-x-2 h-10 bg-gray-50 dark:bg-gray-900"
class="flex-none flex items-center space-x-2 h-10 bg-gray-50 dark:bg-gray-950"
>
<div class="w-full h-full relative mx-3 flex items-center">
<div class="w-full h-2 rounded-full overflow-hidden flex bg-gray-100 dark:bg-gray-800">
Expand Down
2 changes: 1 addition & 1 deletion packages/peeky-client/src/features/run/RunTabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const props = defineProps({
</script>

<template>
<nav class="h-10 flex-none bg-gray-50 dark:bg-gray-900">
<nav class="h-10 flex-none bg-gray-50 dark:bg-gray-950">
<BaseTab :to="{ name: 'run-test' }">
Tests
</BaseTab>
Expand Down
2 changes: 1 addition & 1 deletion packages/peeky-client/src/features/suite/SuitesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const tree = computed(() => {
<template>
<slot name="toolbar" />

<div class="flex-none h-10 bg-gray-50 dark:bg-gray-900">
<div class="flex-none h-10 bg-gray-50 dark:bg-gray-950">
<BaseInput
v-model="searchText"
size="md"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const props = defineProps({
</script>

<template>
<div class="flex-none flex items-center space-x-2 pl-1 pr-3 h-10 bg-gray-50 dark:bg-gray-900">
<div class="flex-none flex items-center space-x-2 pl-1 pr-3 h-10 bg-gray-50 dark:bg-gray-950">
<BaseButton
flat
color="gray"
Expand Down
2 changes: 1 addition & 1 deletion packages/peeky-client/src/features/test-file/TestFiles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ subscribeToMore({
</script>

<template>
<div class="flex-none h-10 bg-gray-50 dark:bg-gray-900">
<div class="flex-none h-10 bg-gray-50 dark:bg-gray-950">
<BaseInput
v-model="searchText"
size="md"
Expand Down
6 changes: 3 additions & 3 deletions packages/peeky-client/src/features/test/TestView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ mutation openInEditor ($id: ID!, $line: Int!, $col: Int!) {
v-if="test"
class="divide-y divide-gray-100 dark:divide-gray-800 h-full flex flex-col"
>
<div class="flex bg-gray-50 dark:bg-gray-900">
<div class="flex bg-gray-50 dark:bg-gray-950">
<TestFileItem
:file="suite.runTestFile"
class="!h-8 m-1 rounded shrink"
/>
</div>

<div class="flex items-center space-x-2 h-10 px-4 flex-none bg-gray-50 dark:bg-gray-900">
<div class="flex items-center space-x-2 h-10 px-4 flex-none bg-gray-50 dark:bg-gray-950">
<StatusIcon
:status="test.status"
class="flex-none"
Expand Down Expand Up @@ -142,7 +142,7 @@ mutation openInEditor ($id: ID!, $line: Int!, $col: Int!) {
</div>

<!-- Tabs -->
<nav class="h-10 bg-gray-50 dark:bg-gray-900">
<nav class="h-10 bg-gray-50 dark:bg-gray-950">
<BaseTab
:to="{
name: 'test',
Expand Down
1 change: 1 addition & 0 deletions packages/peeky-client/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ module.exports = {
700: '#38404a',
800: '#2d333b',
900: '#252a31',
950: '#1f2329',
},

primary: {
Expand Down

0 comments on commit 2a03467

Please sign in to comment.