chore(design): make subtitle a bit less opaque
+ 8
- 8
@@ -1,5 +1,5 @@
 {
-  "_generatedAtUnix": 1663803734312,
+  "_generatedAtUnix": 1663803924923,
   "_hashAlgorithm": "sha1",
   "_version": 2,
   "islands": {

...
@@ -72,15 +72,15 @@
       "pathSource": "./app/views/repository/RepositoryDetailsView.tsx"
     },
     "RepositoryExploreView": {
-      "hash": "416d8fe270478274dc12f6ac09e75bb789842ec3",
+      "hash": "d3cd2213b77362ecf1dacaf408987d6bae744cd3",
       "pathSource": "./app/views/repository/RepositoryExploreView.tsx"
     },
     "UserDashboardView": {
-      "hash": "142f85b0c41050a27b52a6356b9739c6f67824b3",
+      "hash": "616b3877b11bb101b48391f25ed83ad08f0c2df8",
       "pathSource": "./app/views/user/UserDashboardView.tsx"
     },
     "UserDetailsView": {
-      "hash": "af2b33f9d15192719e8d32339d82d0e893660a69",
+      "hash": "75c00f3cc24c25b875bc80166fdd0862ae0c719c",
       "pathSource": "./app/views/user/UserDetailsView.tsx"
     }
   }

@@ -1,4 +1,4 @@
-import type { Prisma, GlobalRole, User } from "@prisma/client";
+import type { Prisma, GlobalRole } from "@prisma/client";
 
 export type AppThemeScheme = "light" | "dark";
 export type WithThemeSchemeProp = {

app/views/repository/RepositoryExploreView.tsx
@@ -22,7 +22,7 @@ const RepositoryExploreView: ReactView<RepositoryExploreViewProps> = ({
     <Layout {...commonProps}>
       <PageWrapper>
         <h1>Explore public repositories</h1>
-        <h2>Discover your next project to contribute to!</h2>
+        <h2 style={{opacity:0.67}}>Discover your next project to contribute to!</h2>
         <div
           data-islandid={`${RepositoriesList.name}$$0`}
           style={{ width: "100%" }}

app/views/user/UserDashboardView.tsx
@@ -24,7 +24,7 @@ const UserDashboardView: ReactView<UserDashboardViewProps> = ({
     <Layout {...commonProps}>
       <PageWrapper>
         <h1>Hey {currentUser.displayName || currentUser.username}, welcome!</h1>
-        <h2>Repositories you own and/or contribute to</h2>
+        <h2 style={{opacity:0.67}}>Repositories you own and/or contribute to</h2>
         <div
           data-islandid={`${RepositoriesList.name}$$0`}
           style={{ width: "100%" }}

app/views/user/UserDetailsView.tsx
@@ -26,7 +26,7 @@ const UserDetailsView: ReactView<UserDetailsViewProps> = ({
     <Layout {...commonProps}>
       <PageWrapper>
         <h1>{user.displayName || user.username}</h1>
-        <h2>
+        <h2 style={{opacity:0.67}}>
           {currentUser != null && currentUser.id === user.id
             ? "Your repositories"
             : "Public repositories from this user"}