Add colorful icon to obsidian folder and files

thanks for ariehen help me in file icon not work in root folder,i finished my css,it works perfect now, share to everyone here:

/**
icons from:https://emojipedia.org
my blog:https://www.yunglobe.com  **/

/* main folder*/
.nav-folder:not(.mod-root):not(.is-collapsed) .nav-folder-title-content::before {content:"πŸ“‚";
}
.nav-folder:not(.mod-root).is-collapsed .nav-folder-title-content::before {content:"πŸ“";
}


/* Sub folder*/
.nav-folder-children::not(.is-collapsed) .nav-folder-title-content::before {
  content:"πŸ“‚";
}
.nav-folder-children.is-collapsed .nav-folder-title-content::before {
  content:"πŸ“";
}



div[data-path$='.txt'] .nav-file-title-content::before,div[data-path$='.ini'] .nav-file-title-content::before  { 
    content: 'πŸ“„'; 
}

  div[data-path$='.md'] .nav-file-title-content::before {
  content: 'πŸ“';
}

div[data-path$='.png'] .nav-file-title-content::before,div[data-path$='.jpg'] .nav-file-title-content::before,div[data-path$='.jpeg'] .nav-file-title-content::before,div[data-path$='.gif'] .nav-file-title-content::before {
  content: 'πŸ–ΌοΈ';
}

  div[data-path$='.url']
 .nav-file-title-content::before {
  content: 'πŸ”—';
}

  div[data-path$='.docx']
 .nav-file-title-content::before {
  content: 'πŸ“‘';
}

  div[data-path$='.xlsx']
 .nav-file-title-content::before {
  content: 'πŸ“ˆ';
}

  div[data-path$='.ppt']
 .nav-file-title-content::before {
  content: 'πŸ“Š';
}

  div[data-path$='.pdf']
 .nav-file-title-content::before {
  content: 'πŸ–Ί';
}


  div[data-path$='.zip']
 .nav-file-title-content::before {
  content: 'πŸ“š';
}
1 Like