jsonresume-theme-urban-techno 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # jsonresume-theme-urban-techno
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [36d1759]
8
+ - @jsonresume/core@0.2.0
9
+
3
10
  ## 0.2.0
4
11
 
5
12
  ### Minor Changes
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # Urban Techno
2
+
3
+ Brutalist tech theme with high contrast, dense two-column layout, and bold typography. Black borders, uppercase section titles, and monochrome palette — power through simplicity.
4
+
5
+ ![Urban Techno theme preview](https://raw.githubusercontent.com/jsonresume/jsonresume.org/master/apps/homepage2/public/img/themes/urban-techno.png)
6
+
7
+ **Tags:** brutalist, tech, dense, technical, monochrome, grid, urban
8
+
9
+ ## Use it
10
+
11
+ Preview it live on the JSON Resume registry:
12
+
13
+ - https://registry.jsonresume.org/thomasdavis?theme=urban-techno
14
+
15
+ Install and use it with the JSON Resume CLI:
16
+
17
+ ```sh
18
+ npm install jsonresume-theme-urban-techno
19
+ resume export resume.html --theme urban-techno
20
+ ```
21
+
22
+ ## Sections
23
+
24
+ Renders all standard JSON Resume sections: work, education, skills, projects, volunteer, awards, publications, languages, interests, references.
25
+
26
+ ## Development
27
+
28
+ This theme lives in the [jsonresume.org](https://github.com/jsonresume/jsonresume.org) monorepo. Build it from the repo root with:
29
+
30
+ ```sh
31
+ pnpm --filter jsonresume-theme-urban-techno build
32
+ ```
33
+
34
+ ## License
35
+
36
+ MIT
package/dist/index.js CHANGED
@@ -6070,7 +6070,7 @@ const Tagline = dt.div`
6070
6070
  font-weight: 700;
6071
6071
  text-transform: uppercase;
6072
6072
  letter-spacing: 1px;
6073
- color: #666;
6073
+ color: #8c8c8c;
6074
6074
  `;
6075
6075
  const ContactSection = dt.div`
6076
6076
  padding: 24px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsonresume-theme-urban-techno",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Brutalist tech theme with high contrast, dense two-column layout, and bold typography",
5
5
  "type": "module",
6
6
  "main": "./index.jsx",
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "styled-components": "^6.1.19",
13
- "@jsonresume/core": "0.1.0"
13
+ "@jsonresume/core": "0.2.0"
14
14
  },
15
15
  "exports": {
16
16
  ".": {
package/src/Resume.jsx CHANGED
@@ -54,7 +54,7 @@ const Tagline = styled.div`
54
54
  font-weight: 700;
55
55
  text-transform: uppercase;
56
56
  letter-spacing: 1px;
57
- color: #666;
57
+ color: #8c8c8c;
58
58
  `;
59
59
 
60
60
  const ContactSection = styled.div`