Skip to content

Commit 1bfa0bb

Browse files
authored
Removes stylesheet submodule (#416)
* Removes stylesheet submodule * Remove .gitmodules
1 parent b61ef69 commit 1bfa0bb

File tree

4 files changed

+151
-6
lines changed

4 files changed

+151
-6
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

data/stylesheet/_index.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
@import "../../subprojects/stylesheet/src/gtk-3.0/palette";
2-
@import "../../subprojects/stylesheet/src/gtk-3.0/index";
1+
@import "_palette";
2+
3+
// Text, images, and other foreground elements
4+
$fg-color: $BLACK_500;
35

46
$text_color: $fg_color;
57

data/stylesheet/_palette.scss

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
//@TODO: Could be removed, if Granite will provide palette
2+
3+
// Internal Palette
4+
$STRAWBERRY_100: #ff8c82;
5+
$STRAWBERRY_300: #ed5353;
6+
$STRAWBERRY_500: #c6262e;
7+
$STRAWBERRY_700: #a10705;
8+
$STRAWBERRY_900: #7a0000;
9+
10+
$ORANGE_100: #ffc27d;
11+
$ORANGE_300: #ffa154;
12+
$ORANGE_500: #f37329;
13+
$ORANGE_700: #cc3b02;
14+
$ORANGE_900: #a62100;
15+
16+
$BANANA_100: #fff394;
17+
$BANANA_300: #ffe16b;
18+
$BANANA_500: #f9c440;
19+
$BANANA_700: #d48e15;
20+
$BANANA_900: #ad5f00;
21+
22+
$LIME_100: #d1ff82;
23+
$LIME_300: #9bdb4d;
24+
$LIME_500: #68b723;
25+
$LIME_700: #3a9104;
26+
$LIME_900: #206b00;
27+
28+
$MINT_100: #89ffdd;
29+
$MINT_300: #43d6b5;
30+
$MINT_500: #28bca3;
31+
$MINT_700: #0e9a83;
32+
$MINT_900: #007367;
33+
34+
$BLUEBERRY_100: #8cd5ff;
35+
$BLUEBERRY_300: #64baff;
36+
$BLUEBERRY_500: #3689e6;
37+
$BLUEBERRY_700: #0d52bf;
38+
$BLUEBERRY_900: #002e99;
39+
40+
$BUBBLEGUM_100: #fe9ab8;
41+
$BUBBLEGUM_300: #f4679d;
42+
$BUBBLEGUM_500: #de3e80;
43+
$BUBBLEGUM_700: #bc245d;
44+
$BUBBLEGUM_900: #910e38;
45+
46+
$GRAPE_100: #e4c6fa;
47+
$GRAPE_300: #cd9ef7;
48+
$GRAPE_500: #a56de2;
49+
$GRAPE_700: #7239b3;
50+
$GRAPE_900: #452981;
51+
52+
$COCOA_100: #a3907c;
53+
$COCOA_300: #8a715e;
54+
$COCOA_500: #715344;
55+
$COCOA_700: #57392d;
56+
$COCOA_900: #3d211b;
57+
58+
$SILVER_100: #fafafa;
59+
$SILVER_300: #d4d4d4;
60+
$SILVER_500: #abacae;
61+
$SILVER_700: #7e8087;
62+
$SILVER_900: #555761;
63+
64+
$SLATE_100: #95a3ab;
65+
$SLATE_300: #667885;
66+
$SLATE_500: #485a6c;
67+
$SLATE_700: #273445;
68+
$SLATE_900: #0e141f;
69+
70+
$BLACK_100: #666;
71+
$BLACK_300: #4d4d4d;
72+
$BLACK_500: #333;
73+
$BLACK_700: #1a1a1a;
74+
$BLACK_900: #000;
75+
76+
// Exported
77+
@define-color STRAWBERRY_100 #{$STRAWBERRY_100};
78+
@define-color STRAWBERRY_300 #{$STRAWBERRY_300};
79+
@define-color STRAWBERRY_500 #{$STRAWBERRY_500};
80+
@define-color STRAWBERRY_700 #{$STRAWBERRY_700};
81+
@define-color STRAWBERRY_900 #{$STRAWBERRY_900};
82+
83+
@define-color ORANGE_100 #{$ORANGE_100};
84+
@define-color ORANGE_300 #{$ORANGE_300};
85+
@define-color ORANGE_500 #{$ORANGE_500};
86+
@define-color ORANGE_700 #{$ORANGE_700};
87+
@define-color ORANGE_900 #{$ORANGE_900};
88+
89+
@define-color BANANA_100 #{$BANANA_100};
90+
@define-color BANANA_300 #{$BANANA_300};
91+
@define-color BANANA_500 #{$BANANA_500};
92+
@define-color BANANA_700 #{$BANANA_700};
93+
@define-color BANANA_900 #{$BANANA_900};
94+
95+
@define-color LIME_100 #{$LIME_100};
96+
@define-color LIME_300 #{$LIME_300};
97+
@define-color LIME_500 #{$LIME_500};
98+
@define-color LIME_700 #{$LIME_700};
99+
@define-color LIME_900 #{$LIME_900};
100+
101+
@define-color MINT_100 #{$MINT_100};
102+
@define-color MINT_300 #{$MINT_300};
103+
@define-color MINT_500 #{$MINT_500};
104+
@define-color MINT_700 #{$MINT_700};
105+
@define-color MINT_900 #{$MINT_900};
106+
107+
@define-color BLUEBERRY_100 #{$BLUEBERRY_100};
108+
@define-color BLUEBERRY_300 #{$BLUEBERRY_300};
109+
@define-color BLUEBERRY_500 #{$BLUEBERRY_500};
110+
@define-color BLUEBERRY_700 #{$BLUEBERRY_700};
111+
@define-color BLUEBERRY_900 #{$BLUEBERRY_900};
112+
113+
@define-color BUBBLEGUM_100 #{$BUBBLEGUM_100};
114+
@define-color BUBBLEGUM_300 #{$BUBBLEGUM_300};
115+
@define-color BUBBLEGUM_500 #{$BUBBLEGUM_500};
116+
@define-color BUBBLEGUM_700 #{$BUBBLEGUM_700};
117+
@define-color BUBBLEGUM_900 #{$BUBBLEGUM_900};
118+
119+
@define-color GRAPE_100 #{$GRAPE_100};
120+
@define-color GRAPE_300 #{$GRAPE_300};
121+
@define-color GRAPE_500 #{$GRAPE_500};
122+
@define-color GRAPE_700 #{$GRAPE_700};
123+
@define-color GRAPE_900 #{$GRAPE_900};
124+
125+
@define-color COCOA_100 #{$COCOA_100};
126+
@define-color COCOA_300 #{$COCOA_300};
127+
@define-color COCOA_500 #{$COCOA_500};
128+
@define-color COCOA_700 #{$COCOA_700};
129+
@define-color COCOA_900 #{$COCOA_900};
130+
131+
@define-color SILVER_100 #{$SILVER_100};
132+
@define-color SILVER_300 #{$SILVER_300};
133+
@define-color SILVER_500 #{$SILVER_500};
134+
@define-color SILVER_700 #{$SILVER_700};
135+
@define-color SILVER_900 #{$SILVER_900};
136+
137+
@define-color SLATE_100 #{$SLATE_100};
138+
@define-color SLATE_300 #{$SLATE_300};
139+
@define-color SLATE_500 #{$SLATE_500};
140+
@define-color SLATE_700 #{$SLATE_700};
141+
@define-color SLATE_900 #{$SLATE_900};
142+
143+
@define-color BLACK_100 #{$BLACK_100};
144+
@define-color BLACK_300 #{$BLACK_300};
145+
@define-color BLACK_500 #{$BLACK_500};
146+
@define-color BLACK_700 #{$BLACK_700};
147+
@define-color BLACK_900 #{"" + $BLACK_900};

subprojects/stylesheet

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)