Card format from "Bold Color Shortcut" by Dae (BigFatDuck1)

Hey all,

Apologies, as this is my first time using this forum and I dont seem to be able to DM a user.

I have been using the bold colour shortcut for a while now, and its been amazing. Was browsing through the GitHub and found this screenshot; the formatting of the cards/colours I really like, especially with the font size being a tad bit exaggerated for bolded/italicized words (and hopefully want to emulate on my deck for in-house exams). Is there a way to replicate this/the format? Thank you all so much.

@dae I hope this is ok to tag you. Apologies if it isnt.

Seems to be a modified version of Shamim template, you can get by importing the MCAT anking note type or replacing the *contents in appearance with

*you will need to replace the colors to match the one in the photo, see www.htmlcolorcodes.com

To replace the contents
Preferences → note type: choose a note type (preferable Cloze) → cards → appearance

/*#########################################################
################  USER CUSTOMIZATION START  ##############*/
/* You can choose colors at www.htmlcolorcodes.com */

/* TIMER ON/OFF */
.timer {
  display: block; /* ‘none’ or ‘block’ */
}

/* TAGS ON/OFF DESKTOP & MOBILE*/
#tags-container {
  display: block; /* ‘none’ or ‘block’ */
}

.mobile #tags-container {
  display: none; /* ‘none’ or ‘block’ */
}

/* MOVE TAGS UP FOR 'NO-DISTRACTIONS' ADD-ON */
#tags-container {
  padding-bottom: 0px; /* 0 normal, 55 to move up */
}


/*~~~~~~~~~FONT SIZE~~~~~~~~~*/
/*NOTE: anything with 'px' will keep a font that size indefinitely, 
'rem' is a fraction of this size above and allows all text to change size with the above setting */
/* Desktop */
html {
  font-size: 28px;
}
/* Mobile */
.mobile {
  font-size: 28px;
}

/*IPAD ADJUSTMENTS (currently not applied)
.ipad .card,
.ipad #extra {
font-size: 28px;
}
.ipad .hints {
font-size: 24px;
}
.ipad #firstaid,
.ipad #sketchy,
.ipad #pixorize,
.ipad #physeo,
.ipad #additional {
font-size: 20px !important;
}
*/

/*REVEALED HINTS FONT SIZE*/
.hints {
  font-size: .85rem;
}

/*Other Fields Font Size*/
#firstaid,
#sketchy,
#pixorize,
#physeo,
#additional {
  font-size: .6rem !important;
}

/*Other Fields Font Size on Mobile*/
.mobile #firstaid,
.mobile #sketchy,
.mobile #pixorize,
.mobile #physeo,
.mobile #additional {
  font-size: 20px !important;
}

/*~~~~~~~~~FONT STYLE~~~~~~~~~*/
.card,
kbd {
  font-family: Menlo, baskerville, sans; /*Step exam's font is Arial Greek*/
}

/*~~~~~~~MAX IMAGE HEIGHT/WIDTH~~~~~~~*/
img {
  max-height: 100%;
}

#extra img,
#notes img,
#missed img,
#pathoma img,
#bnb img {
  max-width: 85%;
}

#firstaid img,
#sketchy img,
#pixorize img,
#physeo img,
#additional img {
  max-width: 60%;
}


/*~~~~~~~~~COLORS~~~~~~~~~/
/* Default Text Color */
.card { 
	color: #D7DEE9; 
}
/* Background Color */
.card { 
	background-color: #333B45; 
}
/* Cloze Color */
.cloze { 
	color: MediumSeaGreen; 
}
/* "Extra" Field Color */
#extra { 
	color: #839496; 
}
/* Hint Reveal Color */
.hints { 
	color: #6c71c4; 
}
/* Missed Questions Hint Reveal Color */
#missed { 
	color: #dc322f; 
}
/* Timer Countdown Color */
.timer {
	color: transparent;
}

/*~~~~~~~~NIGHT MODE COLORS~~~~~~~~*/
/* NM Default Text Color */
.nightMode.card, 
.night_mode .card { 
	color: #D7DEE9 !important; 
}
/* NM Background Color */
.nightMode.card, 
.night_mode .card { 
	background-color: #333B45 !important; 
}
/* NM Cloze Color */
.nightMode .cloze, 
.night_mode .cloze { 
	color: MediumSeaGreen !important; 
}
/* NM One by One Cloze Color */
.nightMode .cloze.one-by-one,
.night_mode .cloze.one-by-one {
    color: #009400 !important;
}
/* NM One by One Cloze Hint Color */
.nightMode .cloze-hint,
.night_mode .cloze-hint {
    color: #009400 !important;
}
/* NM "Extra" Field Color */
.nightMode #extra, 
.night_mode #extra { 
	color: #839496; 
}
/* NM Hint Reveal Color */
.nightMode .hints, 
.night_mode .hints { 
	color: #6c71c4;
}

/* ~~~~~COLOR ACCENTS FOR BOLD-ITALICS-UNDERLINE~~~~~~*/
b { 
	color: #C695C6 !important; 
}
u { 
	color: #5EB3B3 !important; 
} 
i  { 
	color: IndianRed !important; 
}

/*################  USER CUSTOMIZATION END  ################
###########################################################*/

Relevant discussion
Add ability to auto-apply Shamim styling · Issue #153 · AnKing-VIP/AnKing-Note-Types · GitHub

Add-on which helps to customize cards: AnKing Note Types (Easy Customization)

I think you have me confused with someone else - I have no knowledge of such a template.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.