├── build.sh ├── dist ├── rose-pine-dawn.css ├── rose-pine-moon.css └── rose-pine.css ├── readme.md └── template.css /build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | npx @rose-pine/build@latest -s false -p _ -t template.css 4 | -------------------------------------------------------------------------------- /dist/rose-pine-dawn.css: -------------------------------------------------------------------------------- 1 | /* find-host, not working write to the find-host section, so I put it outside */ 2 | .R.HM.D>.LH { 3 | background: #286983cc; 4 | border: none; 5 | border-radius: 1px; 6 | backdrop-filter: blur(1.5px); 7 | color: #e0def4; 8 | } 9 | 10 | /* #ui */ 11 | .HUD, 12 | .TEE { 13 | padding: 0; 14 | bottom: 1px; 15 | } 16 | 17 | @media screen and (min-width: 1260px) { 18 | .Omnibar { 19 | left: calc(20vw - 12px); 20 | width: calc(60vw + 24px); 21 | } 22 | } 23 | @media screen and (min-width: 1760px) { 24 | .Omnibar { 25 | left: calc(30vw - 12px); 26 | width: calc(40vw + 24px); 27 | } 28 | } 29 | 30 | /* #omni */ 31 | #bar { 32 | background: #faf4ed; 33 | 34 | border-bottom: none; 35 | } 36 | 37 | #list { 38 | background: #faf4ed; 39 | } 40 | 41 | #input { 42 | background: #faf4ed; 43 | 44 | box-shadow: none; 45 | border-color: #cecacd; 46 | } 47 | 48 | body::after { 49 | border: none; 50 | } 51 | 52 | .item { 53 | border-bottom: none; 54 | padding-top: 0px; 55 | cursor: pointer; 56 | 57 | 58 | display: flex; 59 | align-items: center; 60 | justify-content: space-between; 61 | } 62 | 63 | .item.s, 64 | .item:hover { 65 | background-color: #cecacd; 66 | } 67 | 68 | .top { 69 | color: #575279; 70 | width: 30rem; 71 | } 72 | 73 | .bottom { 74 | width: 20rem; 75 | overflow: hidden; 76 | } 77 | 78 | .bottom>a { 79 | font-size: .7rem; 80 | } 81 | 82 | #toolbar { 83 | display: none; 84 | } 85 | 86 | /* #find */ 87 | 88 | .r.D { 89 | background: #faf4ed; 90 | color: #575279; 91 | } 92 | 93 | .r { 94 | box-shadow: inset 0 0 1px 0.5px #907aa9; 95 | } 96 | 97 | /* #find:host */ 98 | 99 | 100 | 101 | /* #find:selection */ 102 | ::selection { 103 | background: #ea9d34 !important; 104 | color: #575279; 105 | } -------------------------------------------------------------------------------- /dist/rose-pine-moon.css: -------------------------------------------------------------------------------- 1 | /* find-host, not working write to the find-host section, so I put it outside */ 2 | .R.HM.D>.LH { 3 | background: #3e8fb0cc; 4 | border: none; 5 | border-radius: 1px; 6 | backdrop-filter: blur(1.5px); 7 | color: #e0def4; 8 | } 9 | 10 | /* #ui */ 11 | .HUD, 12 | .TEE { 13 | padding: 0; 14 | bottom: 1px; 15 | } 16 | 17 | @media screen and (min-width: 1260px) { 18 | .Omnibar { 19 | left: calc(20vw - 12px); 20 | width: calc(60vw + 24px); 21 | } 22 | } 23 | @media screen and (min-width: 1760px) { 24 | .Omnibar { 25 | left: calc(30vw - 12px); 26 | width: calc(40vw + 24px); 27 | } 28 | } 29 | 30 | /* #omni */ 31 | #bar { 32 | background: #232136; 33 | 34 | border-bottom: none; 35 | } 36 | 37 | #list { 38 | background: #232136; 39 | } 40 | 41 | #input { 42 | background: #232136; 43 | 44 | box-shadow: none; 45 | border-color: #56526e; 46 | } 47 | 48 | body::after { 49 | border: none; 50 | } 51 | 52 | .item { 53 | border-bottom: none; 54 | padding-top: 0px; 55 | cursor: pointer; 56 | 57 | 58 | display: flex; 59 | align-items: center; 60 | justify-content: space-between; 61 | } 62 | 63 | .item.s, 64 | .item:hover { 65 | background-color: #56526e; 66 | } 67 | 68 | .top { 69 | color: #e0def4; 70 | width: 30rem; 71 | } 72 | 73 | .bottom { 74 | width: 20rem; 75 | overflow: hidden; 76 | } 77 | 78 | .bottom>a { 79 | font-size: .7rem; 80 | } 81 | 82 | #toolbar { 83 | display: none; 84 | } 85 | 86 | /* #find */ 87 | 88 | .r.D { 89 | background: #232136; 90 | color: #e0def4; 91 | } 92 | 93 | .r { 94 | box-shadow: inset 0 0 1px 0.5px #c4a7e7; 95 | } 96 | 97 | /* #find:host */ 98 | 99 | 100 | 101 | /* #find:selection */ 102 | ::selection { 103 | background: #ea9d34 !important; 104 | color: #e0def4; 105 | } -------------------------------------------------------------------------------- /dist/rose-pine.css: -------------------------------------------------------------------------------- 1 | /* find-host, not working write to the find-host section, so I put it outside */ 2 | .R.HM.D>.LH { 3 | background: #31748fcc; 4 | border: none; 5 | border-radius: 1px; 6 | backdrop-filter: blur(1.5px); 7 | color: #e0def4; 8 | } 9 | 10 | /* #ui */ 11 | .HUD, 12 | .TEE { 13 | padding: 0; 14 | bottom: 1px; 15 | } 16 | 17 | @media screen and (min-width: 1260px) { 18 | .Omnibar { 19 | left: calc(20vw - 12px); 20 | width: calc(60vw + 24px); 21 | } 22 | } 23 | @media screen and (min-width: 1760px) { 24 | .Omnibar { 25 | left: calc(30vw - 12px); 26 | width: calc(40vw + 24px); 27 | } 28 | } 29 | 30 | /* #omni */ 31 | #bar { 32 | background: #191724; 33 | 34 | border-bottom: none; 35 | } 36 | 37 | #list { 38 | background: #191724; 39 | } 40 | 41 | #input { 42 | background: #191724; 43 | 44 | box-shadow: none; 45 | border-color: #524f67; 46 | } 47 | 48 | body::after { 49 | border: none; 50 | } 51 | 52 | .item { 53 | border-bottom: none; 54 | padding-top: 0px; 55 | cursor: pointer; 56 | 57 | 58 | display: flex; 59 | align-items: center; 60 | justify-content: space-between; 61 | } 62 | 63 | .item.s, 64 | .item:hover { 65 | background-color: #524f67; 66 | } 67 | 68 | .top { 69 | color: #e0def4; 70 | width: 30rem; 71 | } 72 | 73 | .bottom { 74 | width: 20rem; 75 | overflow: hidden; 76 | } 77 | 78 | .bottom>a { 79 | font-size: .7rem; 80 | } 81 | 82 | #toolbar { 83 | display: none; 84 | } 85 | 86 | /* #find */ 87 | 88 | .r.D { 89 | background: #191724; 90 | color: #e0def4; 91 | } 92 | 93 | .r { 94 | box-shadow: inset 0 0 1px 0.5px #c4a7e7; 95 | } 96 | 97 | /* #find:host */ 98 | 99 | 100 | 101 | /* #find:selection */ 102 | ::selection { 103 | background: #ea9d34 !important; 104 | color: #e0def4; 105 | } -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
All natural pine, faux fur and a bit of soho vibes for the classy minimalist
7 | 8 |
9 |
10 |
11 |
12 |